# Conflicts: # build/azure-pipelines.yml # src/Umbraco.New.Cms.Infrastructure/Umbraco.New.Cms.Infrastructure.csproj # src/Umbraco.Web.UI.Client/package-lock.json # src/Umbraco.Web.UI.Client/package.json # tests/Umbraco.Tests.Integration/CompatibilitySuppressions.xml
22 lines
810 B
XML
22 lines
810 B
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>$(BaseEnablePackageValidation)</EnablePackageValidation>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoFixture.AutoMoq" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="AutoFixture.NUnit3" />
|
|
<PackageReference Include="NUnit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms\Umbraco.Cms.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|