-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure sdk props are imported before our props for legacy packageref
Fixes #114
- Loading branch information
Oren Novotny
committed
Sep 7, 2018
1 parent
a0e0353
commit 2c33705
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
Source/MSBuild.Sdk.Extras/Build/EndOfProjectImports.targets
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 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)Core.props"/> | ||
<Import Project="$(MSBuildThisFileDirectory)Core.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)Workarounds.props"/> | ||
<Import Project="$(MSBuildThisFileDirectory)Core.props"/> | ||
|
||
<PropertyGroup> | ||
<MSBuildSdkExtrasTargets>$(MSBuildThisFileDirectory)Core.targets</MSBuildSdkExtrasTargets> | ||
<MSBuildSdkExtrasTargets>$(MSBuildThisFileDirectory)EndOfProjectImports.targets</MSBuildSdkExtrasTargets> | ||
</PropertyGroup> | ||
|
||
</Project> |