Files
Umbraco-CMS/src/Umbraco.Web.Website/Umbraco.Web.Website.csproj

48 lines
2.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2020-02-24 10:51:48 +01:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
2020-02-24 10:51:48 +01:00
<OutputType>Library</OutputType>
<RootNamespace>Umbraco.Cms.Web.Website</RootNamespace>
<PackageId>Umbraco.Cms.Web.Website</PackageId>
<Title>Umbraco CMS Website</Title>
2021-04-27 15:01:13 +02:00
<Description>Contains the Website assembly needed to run Umbraco Cms (Front office). This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco</Description>
2020-02-24 10:51:48 +01:00
</PropertyGroup>
2020-07-08 09:07:54 +02:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\Umbraco.Web.Website.xml</DocumentationFile>
</PropertyGroup>
2020-02-24 10:51:48 +01:00
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\Umbraco.Web.Website.xml</DocumentationFile>
</PropertyGroup>
2020-03-05 15:20:08 +11:00
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
2020-02-24 10:51:48 +01:00
<ItemGroup>
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
2020-05-08 17:36:59 +10:00
<ProjectReference Include="..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
2020-02-24 10:51:48 +01:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Umbraco.Code" Version="2.0.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
2020-02-24 10:51:48 +01:00
</Project>