1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFrameworks>net6.0;net48;netcoreapp3.1</TargetFrameworks> 5 <AssemblyName>WebDriver.Chrome.Tests</AssemblyName> 6 </PropertyGroup> 7 8 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> 9 <OutputPath>..\..\..\build\cli\Debug\</OutputPath> 10 </PropertyGroup> 11 12 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> 13 <OutputPath>..\..\..\build\cli\Release\</OutputPath> 14 </PropertyGroup> 15 16 <ItemGroup> 17 <Compile Remove="obj\**" /> 18 <EmbeddedResource Remove="obj\**" /> 19 <None Remove="obj\**" /> 20 </ItemGroup> 21 22 <ItemGroup> 23 <Compile Remove="Properties\AssemblyInfo.cs" /> 24 </ItemGroup> 25 26 <ItemGroup> 27 <None Remove="BUCK" /> 28 <None Remove="build.desc" /> 29 <None Remove="Properties\launchSettings.json" /> 30 <None Remove="Settings.StyleCop" /> 31 </ItemGroup> 32 33 <ItemGroup> 34 <PackageReference Include="NUnit" Version="3.13.2" /> 35 <PackageReference Include="NUnit3TestAdapter" Version="3.16.1" /> 36 </ItemGroup> 37 38 <ItemGroup> 39 <ProjectReference Include="..\common\WebDriver.Common.Tests.csproj" /> 40 </ItemGroup> 41 42 <ItemGroup> 43 <None Update="WebDriver.Chrome.Tests.nunit"> 44 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 45 </None> 46 </ItemGroup> 47 48 <ItemGroup> 49 <Folder Include="Properties\" /> 50 </ItemGroup> 51 52 </Project>