2021-03-03 15:36:10 +11:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-10-05 12:11:51 +02:00
|
|
|
<IsTestProject>true</IsTestProject>
|
2021-03-03 15:36:10 +11:00
|
|
|
<RootNamespace>Umbraco.Cms.Tests.UnitTests</RootNamespace>
|
2022-02-24 10:24:27 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
2022-10-05 12:11:51 +02:00
|
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
2021-03-03 15:36:10 +11:00
|
|
|
</PropertyGroup>
|
2020-01-09 13:04:27 +01:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
2022-06-20 09:20:47 +02:00
|
|
|
<PackageReference Include="AngleSharp" Version="0.17.1" />
|
2023-11-13 14:59:52 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
|
|
|
|
<PackageReference Include="System.Data.Odbc" Version="6.0.1" />
|
2022-09-19 16:14:16 +02:00
|
|
|
<PackageReference Include="System.Data.OleDb" Version="6.0.0" />
|
2021-03-03 15:36:10 +11:00
|
|
|
</ItemGroup>
|
2022-10-05 12:11:51 +02:00
|
|
|
|
2021-03-03 15:36:10 +11:00
|
|
|
<ItemGroup>
|
2023-03-30 10:19:35 +02:00
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms.Persistence.Sqlite\Umbraco.Cms.Persistence.Sqlite.csproj" />
|
2022-10-05 12:11:51 +02:00
|
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms.ManagementApi\Umbraco.Cms.ManagementApi.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.PublishedCache.NuCache\Umbraco.PublishedCache.NuCache.csproj" />
|
|
|
|
|
<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
|
|
|
</Project>
|