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>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="Moq" />
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|
|
|
<PackageReference Include="MSTest.TestFramework" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
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>
|