2021-10-19 10:09:48 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-07-20 13:08:55 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<PackageId>Umbraco.Cms.Tests.Integration</PackageId>
|
2022-09-27 14:22:34 +02:00
|
|
|
<Title>Umbraco CMS - Integration tests</Title>
|
|
|
|
|
<Description>Contains helper classes for integration tests with Umbraco CMS, including all internal integration tests.</Description>
|
2022-10-12 10:29:46 +02:00
|
|
|
<IsPackable>true</IsPackable>
|
2022-05-19 10:25:44 +01:00
|
|
|
<IsTestProject>true</IsTestProject>
|
2022-09-27 14:22:34 +02:00
|
|
|
<RootNamespace>Umbraco.Cms.Tests.Integration</RootNamespace>
|
2021-07-20 13:08:55 +02:00
|
|
|
</PropertyGroup>
|
2020-03-12 23:28:24 +11:00
|
|
|
|
2022-09-27 14:22:34 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Bogus" Version="34.0.2" />
|
2022-12-15 10:36:13 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.1" />
|
2022-11-29 14:16:49 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
2022-12-15 10:36:13 +01:00
|
|
|
<PackageReference Include="Moq" Version="4.18.3" />
|
2022-11-29 14:16:49 +01:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" PrivateAssets="all" />
|
2021-09-24 17:42:31 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-09-27 14:22:34 +02:00
|
|
|
<Import Project="..\..\src\Umbraco.Cms.Targets\buildTransitive\Umbraco.Cms.Targets.props" />
|
|
|
|
|
<Import Project="..\..\src\Umbraco.Cms.Targets\buildTransitive\Umbraco.Cms.Targets.targets" />
|
2021-09-24 17:42:31 +02:00
|
|
|
|
2022-09-27 14:22:34 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms\Umbraco.Cms.csproj" />
|
2022-11-09 09:30:07 +01:00
|
|
|
<ProjectReference Include="..\..\src\Umbraco.Cms.ManagementApi\Umbraco.Cms.ManagementApi.csproj" PrivateAssets="all" />
|
2022-09-27 14:22:34 +02:00
|
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
|
|
|
|
</ItemGroup>
|
2020-11-27 19:15:49 +00:00
|
|
|
|
2021-07-20 13:08:55 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Umbraco.Examine.Lucene\UmbracoExamine\TestFiles.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
2022-09-27 14:22:34 +02:00
|
|
|
<LastGenOutput>TestFiles.Designer.cs</LastGenOutput>
|
2021-07-20 13:08:55 +02:00
|
|
|
</EmbeddedResource>
|
|
|
|
|
<Compile Update="Umbraco.Examine.Lucene\UmbracoExamine\TestFiles.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>TestFiles.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2022-09-27 14:22:34 +02:00
|
|
|
<Content Include="Umbraco.Infrastructure\Services\Importing\*.xml" />
|
|
|
|
|
<EmbeddedResource Update="Umbraco.Infrastructure\Services\Importing\ImportResources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<LastGenOutput>ImportResources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
2021-07-20 13:08:55 +02:00
|
|
|
<Compile Update="Umbraco.Infrastructure\Services\Importing\ImportResources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
2022-09-27 14:22:34 +02:00
|
|
|
<AutoGen>True</AutoGen>
|
2021-07-20 13:08:55 +02:00
|
|
|
<DependentUpon>ImportResources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
2021-10-19 23:11:54 +11:00
|
|
|
<EmbeddedResource Include="Umbraco.Web.BackOffice\UrlAndDomains\package.xml" />
|
2022-09-27 14:22:34 +02:00
|
|
|
<Content Include="appsettings.Tests.json" CopyToOutputDirectory="PreserveNewest" />
|
2021-07-20 13:08:55 +02:00
|
|
|
</ItemGroup>
|
2020-03-12 23:28:24 +11:00
|
|
|
</Project>
|