mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
## Summary of the Pull Request This is a follow up on #33964 where using the MSTest meta package brings in all necessary test dependencies as well as enabled MSTest.Analyzers for common test code misconfigurations. Coverlet package has not been used, thus removing.
22 lines
606 B
XML
22 lines
606 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Microsoft.Plugin.Folder.UnitTests</RootNamespace>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="MSTest" />
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|