fix test project color picker ui (#7713)

This commit is contained in:
Davide Giacometti
2020-11-02 12:00:56 +01:00
committed by GitHub
parent a2f3e7cccd
commit 5c3eef0112
2 changed files with 3 additions and 7 deletions

View File

@@ -167,7 +167,7 @@ namespace UnitTest_ColorPickerUI.Helpers
{ {
var color = Color.FromArgb(red, green, blue); var color = Color.FromArgb(red, green, blue);
Exception? exception = null; Exception exception = null;
try try
{ {

View File

@@ -2,20 +2,16 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>UnitTest_ColorPickerUI</RootNamespace>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<Nullable>enable</Nullable> <Platforms>x64</Platforms>
<LangVersion>8.0</LangVersion> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputType>Library</OutputType>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>..\..\..\..\x64\Debug\modules\ColorPicker\UnitTest-ColorPickerUI\</OutputPath> <OutputPath>..\..\..\..\x64\Debug\modules\ColorPicker\UnitTest-ColorPickerUI\</OutputPath>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>..\..\..\..\x64\Release\modules\ColorPicker\UnitTest-ColorPickerUI\</OutputPath> <OutputPath>..\..\..\..\x64\Release\modules\ColorPicker\UnitTest-ColorPickerUI\</OutputPath>
</PropertyGroup> </PropertyGroup>