mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
20 lines
573 B
XML
20 lines
573 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<IsPackable>false</IsPackable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|||
|
|
<PackageReference Include="MSTest.TestFramework" />
|
|||
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|