Skip to content

Commit

Permalink
Move dependencies in <metadata> in Nuspec (#18)
Browse files Browse the repository at this point in the history
There was an error in the previous nuspec causing the dependencies to be
ignored.
  • Loading branch information
mristin authored Jun 4, 2021
1 parent 1e9f952 commit 7a0942c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 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-pre4</version>
<version>1.0.0-pre5</version>
<title>AAS v3 Package Library</title>
<authors>Marko Ristin, Nico Braunisch, Robert Lehmann</authors>
<owners>$author$</owners>
Expand All @@ -13,6 +13,9 @@
A library for reading and writing packaged file format of an Asset Administration Shell (AAS) v3
</description>
<copyright>Copyright (c) 2021</copyright>
<dependencies>
<dependency id="System.IO.Packaging" version="[5,6)" />
</dependencies>
<releaseNotes>v1.0.0-pre3
* Fix nuspec so that DLLs are packaged to lib/ (#15)

Expand All @@ -27,7 +30,4 @@ 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 7a0942c

Please sign in to comment.