2020-09-10 05:01:30 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-12-01 09:40:41 -05:00
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2020-09-10 05:01:30 +02:00
|
|
|
<IsPackable>false</IsPackable>
|
2021-01-20 11:38:52 +01:00
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.Calculator.UnitTests</RootNamespace>
|
2020-09-10 05:01:30 +02:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-02 11:44:12 +02:00
|
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
2022-02-18 15:19:40 +01:00
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
2022-06-28 14:30:03 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
2020-09-10 05:01:30 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2021-01-20 11:38:52 +01:00
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj" />
|
2020-09-10 05:01:30 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|