Skip to content

Commit

Permalink
add nuspec files to configure NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkropa committed May 18, 2015
1 parent bce555c commit 72892c9
Show file tree
Hide file tree
Showing 16 changed files with 100 additions and 563 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ ClientBin/
*~
*.dbmdl
*.[Pp]ublish.xml
*.orig
*.pfx
*.publishsettings

Expand Down
1 change: 1 addition & 0 deletions iddd_agilepm/AgilePM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="IDDD.AgilePM.nuspec" />
<None Include="packages.config" />
<None Include="Settings.StyleCop" />
</ItemGroup>
Expand Down
164 changes: 0 additions & 164 deletions iddd_agilepm/AgilePM.csproj.orig

This file was deleted.

23 changes: 23 additions & 0 deletions iddd_agilepm/IDDD.AgilePM.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>IDDD.AgilePM</id>
<version>1.0.0</version>
<title>IDDD.AgilePM</title>
<authors>Vaughn Vernon</authors>
<owners>Vaughn Vernon</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Sample "Agile Project Management" Bounded Context from the book "Implementing Domain-Driven Design" by Vaughn Vernon</description>
<releaseNotes></releaseNotes>
<copyright>Copyright © 2012,2013 Vaughn Vernon</copyright>
<dependencies>
<dependency id="IDDD.Common" version="1.0.0" />
</dependencies>
</metadata>
<files>
<file src="bin\Release\SaaSOvation.AgilePM.dll" target="lib\net\" />
<file src="bin\Release\SaaSOvation.AgilePM.pdb" target="lib\net\" />
<!-- <file src="bin\Release\SaaSOvation.AgilePM.xml" target="lib\net\" /> -->
<!-- TODO: Add documentation generated by sandcastle -->
</files>
</package>
2 changes: 1 addition & 1 deletion iddd_agilepm/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// Revision
//
// Synchronize these with the values in the nuspec file.
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

// Setting ComVisible to false makes the types in this assembly not visible
Expand Down
1 change: 1 addition & 0 deletions iddd_collaboration/Collaboration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
<Compile Include="Domain.Model\Tenants\Tenant.cs" />
</ItemGroup>
<ItemGroup>
<None Include="IDDD.Collaboration.nuspec" />
<None Include="packages.config" />
<None Include="Settings.StyleCop" />
</ItemGroup>
Expand Down
Loading

0 comments on commit 72892c9

Please sign in to comment.