2020-02-18 08:32:06 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-03-30 21:27:35 +02:00
|
|
|
<RootNamespace>Umbraco.Web.UI.NetCore</RootNamespace>
|
2020-06-30 20:11:39 +02:00
|
|
|
<LangVersion>latest</LangVersion>
|
2020-02-18 08:32:06 +01:00
|
|
|
</PropertyGroup>
|
2020-07-07 20:40:44 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2020-07-08 09:07:54 +02:00
|
|
|
<DocumentationFile>bin\Release\Umbraco.Web.UI.NetCore.xml</DocumentationFile>
|
2020-07-07 20:40:44 +02:00
|
|
|
</PropertyGroup>
|
2020-07-08 09:07:54 +02:00
|
|
|
|
2020-02-18 08:32:06 +01:00
|
|
|
<ItemGroup>
|
2020-04-28 12:31:15 +02:00
|
|
|
<ProjectReference Include="..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj" />
|
2020-06-29 14:38:15 +02:00
|
|
|
<ProjectReference Include="..\Umbraco.Persistance.SqlCe\Umbraco.Persistance.SqlCe.csproj" />
|
2020-04-20 12:20:47 +02:00
|
|
|
<ProjectReference Include="..\Umbraco.PublishedCache.NuCache\Umbraco.PublishedCache.NuCache.csproj" />
|
2020-02-18 08:32:06 +01:00
|
|
|
<ProjectReference Include="..\Umbraco.Web.BackOffice\Umbraco.Web.BackOffice.csproj" />
|
2020-03-24 18:18:25 +01:00
|
|
|
<ProjectReference Include="..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
|
2020-02-24 10:51:48 +01:00
|
|
|
<ProjectReference Include="..\Umbraco.Web.Website\Umbraco.Web.Website.csproj" />
|
2020-02-18 08:32:06 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-20 12:20:47 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
|
2020-05-07 15:24:46 +02:00
|
|
|
<!-- TODO: remove the reference to System.Configuration.ConfigurationManager when Examine/lucene dont need it-->
|
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
|
2020-03-19 18:43:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-08-11 15:00:39 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Config\lang\*.xml">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-02-18 08:32:06 +01:00
|
|
|
</Project>
|