Skip to content

Commit

Permalink
Specify dependencies in nuspec (#17)
Browse files Browse the repository at this point in the history
This patch includes all dependencies in the nuspec file as well as in
the csproj.
  • Loading branch information
mristin authored Jun 4, 2021
1 parent 4462bd2 commit 1e9f952
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .idea/dictionaries/rist.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/AasCore.Aas3.Package/AasCore.Aas3.Package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.IO.Packaging" Version="5.0.0" />
<!-- don't forget to update the .nuspec. -->
<PackageReference Include="System.IO.Packaging" Version="5.*" />
</ItemGroup>
</Project>
5 changes: 4 additions & 1 deletion src/AasCore.Aas3.Package/AasCore.Aas3.Package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>AasCore.Aas3.Package</id>
<version>1.0.0-pre3</version>
<version>1.0.0-pre4</version>
<title>AAS v3 Package Library</title>
<authors>Marko Ristin, Nico Braunisch, Robert Lehmann</authors>
<owners>$author$</owners>
Expand All @@ -27,4 +27,7 @@ v1.0.0-pre1
<files>
<file src="bin\Release\**\*.dll" target="lib" />
</files>
<dependencies>
<dependency id="System.IO.Packaging" version="[5,6)" />
</dependencies>
</package>

0 comments on commit 1e9f952

Please sign in to comment.