diff --git a/.gitignore b/.gitignore index 3f99119..a6fc742 100755 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ MSBuild.NugetContentRestore.Tasks/obj/ Output/ *.nupkg *.suo -*.user \ No newline at end of file +*.user +build.bat diff --git a/MSBuild.NugetContentRestore.Tasks/Properties/AssemblyInfo.cs b/MSBuild.NugetContentRestore.Tasks/Properties/AssemblyInfo.cs index 48c445c..4844218 100755 --- a/MSBuild.NugetContentRestore.Tasks/Properties/AssemblyInfo.cs +++ b/MSBuild.NugetContentRestore.Tasks/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("1d75b795-214e-43cf-87ad-c34a814c2e57")] -[assembly: AssemblyVersion("0.1.3.0")] -[assembly: AssemblyFileVersion("0.1.3.0")] +[assembly: AssemblyVersion("0.1.6.0")] +[assembly: AssemblyFileVersion("0.1.6.0")] diff --git a/MSBuild.NugetContentRestore.nuspec b/MSBuild.NugetContentRestore.nuspec index 1562539..2714464 100755 --- a/MSBuild.NugetContentRestore.nuspec +++ b/MSBuild.NugetContentRestore.nuspec @@ -2,14 +2,21 @@ MSBuild.NugetContentRestore - 0.1.5 + 0.1.6 Francisco Lopez Francisco Lopez https://github.com/panchilo/MSBuild.NugetContentRestore https://github.com/panchilo/MSBuild.NugetContentRestore#license false MSBuild task to restore Nuget content files to project folder - Added install.ps1 and uninstall.ps1 to automatically add BeforeBuild Target with NugetContentRestoreTask. + + * 0.1.6 + - fix #5: Error in importing task if SolutionDir parameter not available. + * 0.1.5 + - add #3: install.ps1 and uninstall.ps1 to automatically add BeforeBuild Target with NugetContentRestoreTask. + * 0.1.3 + - Initial release + Copyright 2014, Francisco Lopez nuget content restore msbuild task diff --git a/MSBuild.NugetContentRestore.targets b/MSBuild.NugetContentRestore.targets index 787c7dc..f9c22b2 100755 --- a/MSBuild.NugetContentRestore.targets +++ b/MSBuild.NugetContentRestore.targets @@ -1,11 +1,6 @@ - - $(SolutionDir)\packages\MSBuild.NugetContentRestore.0.1.5\build\net40\ - $(NugetContentRestorePath)\MSBuild.NugetContentRestore.dll - - - + \ No newline at end of file diff --git a/readme.txt b/readme.txt index 9f516ec..0ce105f 100755 --- a/readme.txt +++ b/readme.txt @@ -1,12 +1,12 @@ MSBuild.NugetContentRestore README ================================== -Congratulations! MSBuild.NugetContentRestore is now installed to your project. +Congratulations! MSBuild.NugetContentRestore is now installed in your project. A reference to NugetContentRestoreTask has been added to your project. -Starting on version v.0.1.4, MSBuild.NugetContentRestore also took care of +Starting on version v.0.1.4, MSBuild.NugetContentRestore also takes care of creating 'BeforeBuild' Target with NugetContentRestoreTask in it. All NuGet Packages Content Folders will be copied to your project folder right -before is built. +before it's built. Enjoy! \ No newline at end of file