2026-02-06 16:12:44 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
2026-02-06 16:12:44 -08:00
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
2024-08-09 09:18:56 -07:00
|
|
|
|
2020-08-13 13:51:01 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2026-02-06 16:12:44 -08:00
|
|
|
<OutputPath>$(RepoRoot)$(Configuration)\$(Platform)\tests\SettingsTests\</OutputPath>
|
2020-08-13 13:51:01 -07:00
|
|
|
|
2023-05-15 23:32:26 +01:00
|
|
|
<!-- TODO: fix issues and reenable -->
|
|
|
|
|
<!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers -->
|
|
|
|
|
<!-- We might want to add that to the project and fix the issues as well -->
|
|
|
|
|
<NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-08-13 13:51:01 -07:00
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="Moq" />
|
2024-07-26 12:57:06 +02:00
|
|
|
<PackageReference Include="MSTest" />
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" />
|
2025-04-14 17:01:54 +00:00
|
|
|
<PackageReference Include="System.Net.Http" />
|
|
|
|
|
<PackageReference Include="System.Private.Uri" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" />
|
2020-08-13 13:51:01 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-12-15 12:56:52 +01:00
|
|
|
<ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" />
|
2022-10-26 14:02:31 +01:00
|
|
|
<ProjectReference Include="..\Settings.UI\PowerToys.Settings.csproj" />
|
2020-08-13 13:51:01 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|