mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
34 lines
880 B
XML
34 lines
880 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
||
|
|
<Platforms>x64;ARM64</Platforms>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\tests\RegistryPreview.FuzzTests\</OutputPath>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Compile Include="..\RegistryPreviewUILib\ParseHelper.cs" Link="ParseHelper.cs" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="OneFuzzConfig.json">
|
||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
|
</Content>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="MSTest" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|