2020-09-10 05:01:30 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
2020-09-10 05:01:30 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<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" />
|
2024-07-26 12:57:06 +02:00
|
|
|
<PackageReference Include="MSTest" />
|
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>
|