2025-03-13 10:23:02 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-05-02 20:38:11 -07:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
2026-02-06 16:12:44 -08:00
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
|
|
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.FuzzTest.props" />
|
2025-03-13 10:23:02 +08:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-05-02 20:38:11 -07:00
|
|
|
<Platforms>x64;ARM64</Platforms>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2025-03-13 10:23:02 +08:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-02-06 16:12:44 -08:00
|
|
|
<OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\RegistryPreview.FuzzTests\</OutputPath>
|
2025-03-13 10:23:02 +08:00
|
|
|
</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>
|