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

52 lines
2.0 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-08-12 10:03:40 +02:00
<PropertyGroup>
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
</PropertyGroup>
2020-02-18 08:32:06 +01:00
<ItemGroup>
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>
<ItemGroup>
<Compile Remove="App_Data\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="App_Data\**" />
</ItemGroup>
2020-08-12 13:26:24 +02:00
<ItemGroup>
2020-08-12 10:03:40 +02:00
<None Include="config\**\*.*">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
<None Include="umbraco\**\*.*">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
</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-12 10:03:40 +02:00
2020-08-11 15:00:39 +02:00
2020-02-18 08:32:06 +01:00
</Project>