/ src / settings-ui / Settings.UI.UnitTests / Settings.UI.UnitTests.csproj
Settings.UI.UnitTests.csproj
 1  <Project Sdk="Microsoft.NET.Sdk">
 2    <!-- Look at Directory.Build.props in root for common stuff as well -->
 3    <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
 4  
 5    <PropertyGroup>
 6      <IsPackable>false</IsPackable>
 7      <OutputPath>$(RepoRoot)$(Configuration)\$(Platform)\tests\SettingsTests\</OutputPath>
 8  
 9      <!-- TODO: fix issues and reenable -->
10      <!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers -->
11      <!-- We might want to add that to the project and fix the issues as well -->
12      <NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn>
13    </PropertyGroup>
14  
15    <ItemGroup>
16      <PackageReference Include="Moq" />
17      <PackageReference Include="MSTest" />
18      <PackageReference Include="System.IO.Abstractions.TestingHelpers" />
19      <PackageReference Include="System.Net.Http" />
20      <PackageReference Include="System.Private.Uri" />
21      <PackageReference Include="System.Text.RegularExpressions" />
22    </ItemGroup>
23  
24    <ItemGroup>
25      <ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" />
26      <ProjectReference Include="..\Settings.UI\PowerToys.Settings.csproj" />
27    </ItemGroup>
28  </Project>