forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterialColorUtilities.Tests.csproj
More file actions
37 lines (36 loc) · 1.54 KB
/
MaterialColorUtilities.Tests.csproj
File metadata and controls
37 lines (36 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<AssemblyTitle>MaterialColorUtilities.Tests</AssemblyTitle>
<Product>MaterialColorUtilities.Tests</Product>
<OutputType>Exe</OutputType>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnableSourceLink>false</EnableSourceLink>
<SuppressImplicitGitSourceLink>true</SuppressImplicitGitSourceLink>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\MaterialDesign3.MaterialColorUtilities\MaterialColorUtilities.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitHubActionsTestLogger">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="System.Net.Http" />
<PackageReference Include="System.Text.RegularExpressions" />
<PackageReference Include="TUnit" />
<PackageReference Include="Shouldly" />
</ItemGroup>
<ItemGroup>
<Using Include="TUnit.Assertions.AssertConditions.Throws" />
<Using Include="TUnit.Core.Executors" />
<Using Include="TUnit.Assertions" />
<Using Include="Shouldly" />
</ItemGroup>
</Project>