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:
authorAlex Perovich <alperovi@microsoft.com>2017-04-13 01:06:44 +0300
committerGitHub <noreply@github.com>2017-04-13 01:06:44 +0300
commitd310ded1429c7e2317444405a66f4fb62fb005c5 (patch)
tree8eee5907630db89e5d8d9a7e2dfc90a03e3dabb1 /src/System.Drawing.Primitives
parentdf579d8531104524aeadd2377a12de67f256545e (diff)
Fix System.Drawing tests on UAP (#18294)
Fixes #17930
Diffstat (limited to 'src/System.Drawing.Primitives')
-rw-r--r--src/System.Drawing.Primitives/tests/Configurations.props3
-rw-r--r--src/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/System.Drawing.Primitives/tests/Configurations.props b/src/System.Drawing.Primitives/tests/Configurations.props
index 77a4b65bc9..65891797e2 100644
--- a/src/System.Drawing.Primitives/tests/Configurations.props
+++ b/src/System.Drawing.Primitives/tests/Configurations.props
@@ -3,7 +3,8 @@
<PropertyGroup>
<BuildConfigurations>
netstandard;
+ uap;
netcoreapp;
</BuildConfigurations>
</PropertyGroup>
-</Project> \ No newline at end of file
+</Project>
diff --git a/src/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj b/src/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj
index 77ef549781..0de7eb3c65 100644
--- a/src/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj
+++ b/src/System.Drawing.Primitives/tests/System.Drawing.Primitives.Tests.csproj
@@ -9,6 +9,8 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netcoreapp-Release|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Debug|AnyCPU'" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'netstandard-Release|AnyCPU'" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Debug|AnyCPU'" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'uap-Release|AnyCPU'" />
<ItemGroup>
<Compile Include="PointFTests.cs" />
<Compile Include="PointTests.cs" />
@@ -26,4 +28,4 @@
</Compile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
-</Project> \ No newline at end of file
+</Project>