mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-18 21:48:12 +08:00
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
<RootNamespace>UnitTest_ColorPickerUI</RootNamespace>
|
|||
|
<IsPackable>false</IsPackable>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<LangVersion>9.0</LangVersion>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|||
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|||
|
<PlatformTarget>x64</PlatformTarget>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|||
|
<PackageReference Include="coverlet.collector" Version="1.3.0">
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
|
|||
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\src\core\Microsoft.PowerToys.Settings.UI.Lib\Microsoft.PowerToys.Settings.UI.Lib.csproj" />
|
|||
|
<ProjectReference Include="..\src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|