mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
27 lines
780 B
XML
27 lines
780 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
|
||
|
<Platforms>x64</Platforms>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||
|
<PlatformTarget>x64</PlatformTarget>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Moq" Version="4.14.3" />
|
||
|
<PackageReference Include="nunit" Version="3.12.0" />
|
||
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|