Skip to content

Commit

Permalink
fixed nuspec dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
phmarques committed Mar 10, 2017
1 parent c2209bd commit 9661143
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cake.DoInDirectory/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
// [assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

[assembly: AssemblyInformationalVersion("1.0.0.0-master")]
[assembly: AssemblyInformationalVersion("1.0.1.1-master")]
3 changes: 3 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ Task("Pack")
new NuSpecContent { Source = "Cake.DoInDirectory/bin/Release/Cake.DoInDirectory.XML", Target = "lib/net45" },
new NuSpecContent { Source = "Cake.DoInDirectory/bin/Release/Cake.DoInDirectory.pdb", Target = "lib/net45" }
},
Dependencies = new [] {
new NuSpecDependency { Id = "Cake.Core", Version = "0.18.0" }
},
BasePath = "./",
OutputDirectory = "./nuget"
};
Expand Down

0 comments on commit 9661143

Please sign in to comment.