Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2017-02-03 09:47:13 +0300
committerEric St. John <ericstj@microsoft.com>2017-02-03 19:32:14 +0300
commit48680c23d9669bd0735a8b374c3e459a5406eef8 (patch)
treec69076fb05c412f0175b2c77f3146609acf86f3c /src/System.Buffers
parente3fd245f36d6fb0483c81167c2853d6918ab5dad (diff)
Fix legacy build configurations
Diffstat (limited to 'src/System.Buffers')
-rw-r--r--src/System.Buffers/ref/Configurations.props1
-rw-r--r--src/System.Buffers/ref/System.Buffers.csproj3
-rw-r--r--src/System.Buffers/src/System.Buffers.csproj8
3 files changed, 8 insertions, 4 deletions
diff --git a/src/System.Buffers/ref/Configurations.props b/src/System.Buffers/ref/Configurations.props
index c398e42e89..a66f1edba4 100644
--- a/src/System.Buffers/ref/Configurations.props
+++ b/src/System.Buffers/ref/Configurations.props
@@ -3,6 +3,7 @@
<PropertyGroup>
<BuildConfigurations>
netstandard;
+ netstandard1.1;
</BuildConfigurations>
</PropertyGroup>
</Project> \ No newline at end of file
diff --git a/src/System.Buffers/ref/System.Buffers.csproj b/src/System.Buffers/ref/System.Buffers.csproj
index 6ee65d7b86..eda4ed05a8 100644
--- a/src/System.Buffers/ref/System.Buffers.csproj
+++ b/src/System.Buffers/ref/System.Buffers.csproj
@@ -10,5 +10,8 @@
<ItemGroup>
<Compile Include="System.Buffers.cs" />
</ItemGroup>
+ <ItemGroup Condition="'$(TargetGroup)' == 'netstandard1.1'">
+ <Reference Include="System.Runtime" />
+ </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project> \ No newline at end of file
diff --git a/src/System.Buffers/src/System.Buffers.csproj b/src/System.Buffers/src/System.Buffers.csproj
index c4f2f57267..bd49a66741 100644
--- a/src/System.Buffers/src/System.Buffers.csproj
+++ b/src/System.Buffers/src/System.Buffers.csproj
@@ -29,11 +29,11 @@
<ItemGroup Condition="'$(IsPartialFacadeAssembly)' == 'true'">
<ReferenceFromRuntime Include="System.Private.CoreLib" />
</ItemGroup>
- <ItemGroup Condition="'$(TargetGroup)'=='uapaot'">
- <Reference Include="System.Runtime" />
- <Reference Include="System.Resources.ResourceManager" />
- <Reference Include="System.Diagnostics.Tracing" />
+ <ItemGroup Condition="'$(TargetGroup)' == 'uapaot' or '$(TargetGroup)' == 'netstandard1.1'">
<Reference Include="System.Diagnostics.Debug" />
+ <Reference Include="System.Diagnostics.Tracing" />
+ <Reference Include="System.Resources.ResourceManager" />
+ <Reference Include="System.Runtime" />
<Reference Include="System.Threading" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />