-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Error in importing task if SolutionDir parameter not available.
- Loading branch information
Showing
5 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ MSBuild.NugetContentRestore.Tasks/obj/ | |
Output/ | ||
*.nupkg | ||
*.suo | ||
*.user | ||
*.user | ||
build.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<NugetContentRestorePath>$(SolutionDir)\packages\MSBuild.NugetContentRestore.0.1.5\build\net40\</NugetContentRestorePath> | ||
<NugetContentRestoreLib>$(NugetContentRestorePath)\MSBuild.NugetContentRestore.dll</NugetContentRestoreLib> | ||
</PropertyGroup> | ||
|
||
<UsingTask AssemblyFile="$(NugetContentRestoreLib)" TaskName="NugetContentRestoreTask" /> | ||
<UsingTask AssemblyFile="MSBuild.NugetContentRestore.dll" TaskName="NugetContentRestoreTask" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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! |