2021-11-18 15:35:42 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-13 12:08:25 +11:00
|
|
|
<PropertyGroup>
|
2022-09-27 14:22:34 +02:00
|
|
|
<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>
|
2023-07-06 07:51:49 +02:00
|
|
|
<IsPackable>true</IsPackable>
|
2023-11-09 08:39:42 +01:00
|
|
|
<EnablePackageValidation>$(BaseEnablePackageValidation)</EnablePackageValidation>
|
2020-03-13 12:08:25 +11:00
|
|
|
</PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
|
2024-08-27 17:56:09 +01:00
|
|
|
<PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
<!--
|
|
|
|
|
TODO: Fix and remove overrides:
|
|
|
|
|
[CS1998] async
|
|
|
|
|
[CS0618] obsolete references
|
|
|
|
|
[SYSLIB0012] obsolete references
|
|
|
|
|
-->
|
|
|
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors),CS1998,CS0618,SYSLIB0012</WarningsNotAsErrors>
|
2024-08-27 17:56:09 +01:00
|
|
|
</PropertyGroup>
|
2024-11-19 13:29:39 +01:00
|
|
|
|
2020-03-13 12:08:25 +11:00
|
|
|
<ItemGroup>
|
2023-11-27 15:18:00 +01:00
|
|
|
<PackageReference Include="AutoFixture.AutoMoq" />
|
|
|
|
|
<PackageReference Include="AutoFixture.NUnit3" />
|
2024-11-19 13:29:39 +01:00
|
|
|
<PackageReference Include="Moq" />
|
2023-11-27 15:18:00 +01:00
|
|
|
<PackageReference Include="NUnit" />
|
2020-03-13 12:08:25 +11:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-08-18 16:04:37 +02:00
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms\Umbraco.Cms.csproj" />
|
2020-03-13 12:08:25 +11:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|