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-12-28 10:43:31 -08:00
|
|
|
<PackageReference Include="Moq" Version="4.18.3" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.0.1" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.0.1" />
|
2022-12-20 14:22:37 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
|
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>
|