This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Invoke NuGet.targets directly to avoid race condition caused by issue…
… in solution targets See dotnet/msbuild#1587
- Loading branch information
Nate McMaster
committed
Jan 20, 2017
1 parent
d896eb9
commit f55ca3b
Showing
2 changed files
with
18 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!-- workaround https://github.com/Microsoft/msbuild/issues/1587 --> | ||
<Project DefaultTargets="Restore"> | ||
<ItemGroup> | ||
<RestoreGraphProjectInputItems Include="..\src\*\*.csproj" /> | ||
<RestoreGraphProjectInputItems Include="..\test\*\*.csproj" /> | ||
<RestoreGraphProjectInputItems Include="..\samples\*\*.csproj" /> | ||
<RestoreGraphProjectInputItems Include="..\tools\*\*.csproj" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\NuGet.targets" /> | ||
</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