forked from dotnet/corefx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add netcoreapp2.0 configuration to package to optimize a few parts of the Unsafe APIs. https://github.com/dotnet/corefx/issues/26145 Add netcoreapp configuration so that netcoreapp vertical still builds without needing the netcoreapp2.0 targeting pack.
- Loading branch information
1 parent
32079aa
commit 768aa11
Showing
3 changed files
with
18 additions
and
7 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
9 changes: 7 additions & 2 deletions
9
src/System.Runtime.CompilerServices.Unsafe/src/Configurations.props
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,9 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<BuildConfigurations> | ||
<Packageconfigurations> | ||
netcoreapp2.0; | ||
netstandard1.0; | ||
netstandard; | ||
</BuildConfigurations> | ||
</Packageconfigurations> | ||
<BuildConfigurations> | ||
$(PackageConfigurations); | ||
netcoreapp | ||
</BuildConfigurations> | ||
</PropertyGroup> | ||
</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