2020-01-09 13:04:27 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-03-18 07:42:35 +01:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-01-09 13:04:27 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="obj\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-03-18 07:42:35 +01:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
2020-04-20 12:20:47 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
|
2020-01-09 13:04:27 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-03-18 07:42:35 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
2020-01-09 13:04:27 +01:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
2020-03-18 07:42:35 +01:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
|
2020-01-09 13:04:27 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|