RegistryPreview.FuzzTests.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 <!-- Look at Directory.Build.props in root for common stuff as well --> 3 <Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" /> 4 <Import Project="$(RepoRoot)src\Common.Dotnet.FuzzTest.props" /> 5 6 <PropertyGroup> 7 <Platforms>x64;ARM64</Platforms> 8 <LangVersion>latest</LangVersion> 9 <ImplicitUsings>enable</ImplicitUsings> 10 <Nullable>enable</Nullable> 11 </PropertyGroup> 12 13 <PropertyGroup> 14 <OutputPath>$(RepoRoot)$(Platform)\$(Configuration)\tests\RegistryPreview.FuzzTests\</OutputPath> 15 </PropertyGroup> 16 17 <ItemGroup> 18 <Compile Include="..\RegistryPreviewUILib\ParseHelper.cs" Link="ParseHelper.cs" /> 19 </ItemGroup> 20 21 <ItemGroup> 22 <Content Include="OneFuzzConfig.json"> 23 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 24 </Content> 25 </ItemGroup> 26 27 <ItemGroup> 28 <PackageReference Include="MSTest" /> 29 </ItemGroup> 30 31 <ItemGroup> 32 <Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" /> 33 </ItemGroup> 34 35 </Project>