* Updated the package validation baseline version to 12 RC1 * Update PackageValidationBaselineVersion to 12.0.0 and remove CompatibilitySuppressions.xml files * Clean up project files --------- Co-authored-by: Ronald Barendse <ronald@barend.se>
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<PackageId>Umbraco.Cms.Tests</PackageId>
|
|
<Title>Umbraco CMS - Test tools</Title>
|
|
<Description>Contains commonly used tools to write tests for Umbraco CMS, such as various builders for content etc.</Description>
|
|
<RootNamespace>Umbraco.Cms.Tests.Common</RootNamespace>
|
|
<IsPackable>true</IsPackable>
|
|
<EnablePackageValidation>true</EnablePackageValidation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoFixture.AutoMoq" Version="4.18.0" />
|
|
<PackageReference Include="MiniProfiler.AspNetCore" Version="4.3.8" />
|
|
<PackageReference Include="Moq" Version="4.18.4" />
|
|
<PackageReference Include="AutoFixture.NUnit3" Version="4.18.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms.Persistence.SqlServer\Umbraco.Cms.Persistence.SqlServer.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Core\Umbraco.Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\..\src\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|