Files
Umbraco-CMS/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj

35 lines
1.5 KiB
XML
Raw Normal View History

2020-02-18 08:32:06 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Umbraco.Web.UI.NetCore</RootNamespace>
<LangVersion>latest</LangVersion>
2020-02-18 08:32:06 +01:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
2020-07-08 09:07:54 +02:00
<DocumentationFile>bin\Release\Umbraco.Web.UI.NetCore.xml</DocumentationFile>
</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" />
<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" />
<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" />
</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>