This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-7
lines changed
src/System.Runtime.CompilerServices.Unsafe Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ Global
3030 {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08} .Debug| Any CPU .Build .0 = netstandard -Debug| Any CPU
3131 {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08} .Release| Any CPU .ActiveCfg = netstandard -Release| Any CPU
3232 {8012DD70-A6D7-45C0-BC8E-DFFB48D86E08} .Release| Any CPU .Build .0 = netstandard -Release| Any CPU
33- {04BA3E3C-6979-4792-B19E-C797AD607F42} .Debug| Any CPU .ActiveCfg = netstandard -Debug| Any CPU
34- {04BA3E3C-6979-4792-B19E-C797AD607F42} .Debug| Any CPU .Build .0 = netstandard -Debug| Any CPU
35- {04BA3E3C-6979-4792-B19E-C797AD607F42} .Release| Any CPU .ActiveCfg = netstandard -Release| Any CPU
36- {04BA3E3C-6979-4792-B19E-C797AD607F42} .Release| Any CPU .Build .0 = netstandard -Release| Any CPU
33+ {04BA3E3C-6979-4792-B19E-C797AD607F42} .Debug| Any CPU .ActiveCfg = netcoreapp -Debug| Any CPU
34+ {04BA3E3C-6979-4792-B19E-C797AD607F42} .Debug| Any CPU .Build .0 = netcoreapp -Debug| Any CPU
35+ {04BA3E3C-6979-4792-B19E-C797AD607F42} .Release| Any CPU .ActiveCfg = netcoreapp -Release| Any CPU
36+ {04BA3E3C-6979-4792-B19E-C797AD607F42} .Release| Any CPU .Build .0 = netcoreapp -Release| Any CPU
3737 {649A377C-1E07-4105-B01F-7F1044D3356C} .Debug| Any CPU .ActiveCfg = netstandard -Debug| Any CPU
3838 {649A377C-1E07-4105-B01F-7F1044D3356C} .Debug| Any CPU .Build .0 = netstandard -Debug| Any CPU
3939 {649A377C-1E07-4105-B01F-7F1044D3356C} .Release| Any CPU .ActiveCfg = netstandard -Release| Any CPU
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
33 <PropertyGroup >
4- <BuildConfigurations >
4+ <PackageConfigurations >
5+ netcoreapp2.0;
56 netstandard1.0;
67 netstandard;
7- </BuildConfigurations >
8+ </PackageConfigurations >
9+ <BuildConfigurations >
10+ $(PackageConfigurations);
11+ netcoreapp
12+ </BuildConfigurations >
813 </PropertyGroup >
914</Project >
Original file line number Diff line number Diff line change 44 <PropertyGroup >
55 <DocumentationFile >$(MSBuildThisFileDirectory)System.Runtime.CompilerServices.Unsafe.xml</DocumentationFile >
66 <ProjectGuid >{04BA3E3C-6979-4792-B19E-C797AD607F42}</ProjectGuid >
7- <IlasmFlags >$(IlasmFlags) -INCLUDE=include\$(TargetGroup)</IlasmFlags >
7+ <IncludePath >include\$(TargetGroup)</IncludePath >
8+ <IncludePath Condition =" '$(TargetGroup)' == 'netcoreapp2.0'" >include\netcoreapp</IncludePath >
9+ <IlasmFlags >$(IlasmFlags) -INCLUDE=$(IncludePath)</IlasmFlags >
810 <!-- cannot build on unix, but package as OS-agnostic -->
911 <PackageTargetRuntime />
1012 </PropertyGroup >
13+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netcoreapp-Debug|AnyCPU'" />
14+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netcoreapp-Release|AnyCPU'" />
15+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netcoreapp2.0-Debug|AnyCPU'" />
16+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netcoreapp2.0-Release|AnyCPU'" />
1117 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netstandard-Debug|AnyCPU'" />
1218 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netstandard-Release|AnyCPU'" />
1319 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'netstandard1.0-Debug|AnyCPU'" />
You can’t perform that action at this time.
0 commit comments