2021-03-03 15:36:10 +11:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-01-09 13:04:27 +01:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<RootNamespace>Umbraco.Cms.Tests.UnitTests</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
2020-01-09 13:04:27 +01:00
|
|
|
|
2021-09-24 17:42:31 +02:00
|
|
|
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
|
|
|
|
|
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
2021-10-18 08:14:04 +01:00
|
|
|
<ProjectReference Include="..\..\src\Umbraco.PublishedCache.NuCache\Umbraco.PublishedCache.NuCache.csproj" />
|
2021-03-03 15:36:10 +11:00
|
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
2021-10-18 08:14:04 +01:00
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Web.BackOffice\Umbraco.Web.BackOffice.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Web.Website\Umbraco.Web.Website.csproj" />
|
2021-03-03 15:36:10 +11:00
|
|
|
</ItemGroup>
|
2020-01-09 13:04:27 +01:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
2021-11-03 14:29:59 +01:00
|
|
|
<PackageReference Include="AngleSharp" Version="0.16.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
2021-08-06 10:53:42 +01:00
|
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
2021-08-18 11:38:23 +01:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.0.0" />
|
2021-03-03 15:36:10 +11:00
|
|
|
<PackageReference Include="System.Data.Odbc" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="System.Data.OleDb" Version="5.0.0" />
|
|
|
|
|
</ItemGroup>
|
2020-09-22 15:59:37 +02:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="TestHelpers\Assets\UmbracoTraceLog.UNITTEST.20181112.json" />
|
|
|
|
|
</ItemGroup>
|
2020-10-28 09:41:23 +01:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
2021-10-29 15:00:27 +02:00
|
|
|
<Folder Include="Umbraco.Core\Persistence\Repositories" />
|
2021-03-03 15:36:10 +11:00
|
|
|
<Folder Include="umbraco\Data\TEMP\TypesCache" />
|
|
|
|
|
</ItemGroup>
|
2021-01-18 15:40:22 +01:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="umbraco\Data\TEMP\TypesCache\umbraco-types.DESKTOP-EU212M2.hash" />
|
|
|
|
|
</ItemGroup>
|
2021-01-18 15:40:22 +01:00
|
|
|
|
2020-01-09 13:04:27 +01:00
|
|
|
</Project>
|