mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
24 lines
882 B
XML
24 lines
882 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Microsoft.Plugin.Folder.UnitTests</RootNamespace>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" Version="12.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|