2020-03-12 23:28:24 +11:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-03-31 12:22:11 +02:00
|
|
|
|
<LangVersion>8</LangVersion>
|
2020-03-12 23:28:24 +11:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-04-03 13:16:01 +11:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="TEMP\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="TEMP\**" />
|
|
|
|
|
|
<None Remove="TEMP\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-12 23:28:24 +11:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="LightInject.Microsoft.DependencyInjection" Version="3.3.0" />
|
2020-06-09 13:48:50 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.4" />
|
2020-03-12 23:28:24 +11:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
|
|
|
|
<PackageReference Include="Moq" Version="4.13.1" />
|
|
|
|
|
|
<PackageReference Include="nunit" Version="3.12.0" />
|
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2020-03-24 11:53:56 +11:00
|
|
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.1" />
|
2020-03-12 23:28:24 +11:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
2020-06-09 07:49:26 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.PublishedCache.NuCache\Umbraco.PublishedCache.NuCache.csproj" />
|
2020-03-13 14:43:41 +11:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Tests.Common\Umbraco.Tests.Common.csproj" />
|
2020-03-12 23:28:24 +11:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.BackOffice\Umbraco.Web.BackOffice.csproj" />
|
2020-06-09 13:48:50 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.UI.NetCore\Umbraco.Web.UI.NetCore.csproj" />
|
2020-05-12 16:11:11 +02:00
|
|
|
|
<ProjectReference Include="..\Umbraco.Web.Website\Umbraco.Web.Website.csproj" />
|
2020-03-12 23:28:24 +11:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-14 16:55:54 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Umbraco.Configuration\Configurations\umbracoSettings.config">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Umbraco.Configuration\Configurations\umbracoSettings.minimal.config">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Umbraco.Configuration\Configurations\web.config">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-12 23:28:24 +11:00
|
|
|
|
</Project>
|