Skip to content

Commit

Permalink
Add netstandard2 target to nuspec file.
Browse files Browse the repository at this point in the history
netstandard2 build is already in src\HidLibrary\HidLibrary.csproj, but this was missing in the nuget package.
  • Loading branch information
w-michal committed Mar 29, 2020
1 parent 9436185 commit 8a0159f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions HidLibrary.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@
<group targetFramework="net40">
<dependency id="Theraot.Core" version="1.0.3" />
</group>
<group targetFramework="net45">
</group>
<group targetFramework="netstandard2">
</group>
</dependencies>
</metadata>
<files>
<file src="net20\HidLibrary.*" target="lib\net20" exclude="*.xml" />
<file src="net35\HidLibrary.*" target="lib\net35" exclude="*.xml" />
<file src="net40\HidLibrary.*" target="lib\net40" exclude="*.xml" />
<file src="net45\HidLibrary.*" target="lib\net45" exclude="*.xml" />
<file src="netstandard2\HidLibrary.*" target="lib\netstandard2" exclude="*.xml" />
</files>
</package>

0 comments on commit 8a0159f

Please sign in to comment.