2021-11-04 11:05:39 +01:00
<Project Sdk= "Microsoft.NET.Sdk.Web" >
2021-08-24 16:44:39 +01:00
2021-02-05 12:27:30 +01:00
<PropertyGroup >
<TargetFramework > net5.0</TargetFramework>
2021-08-18 11:18:30 +02:00
<RootNamespace Condition= "'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'" > Umbraco.Cms.Web.UI</RootNamespace>
2021-02-05 12:27:30 +01:00
</PropertyGroup>
2020-08-11 08:28:16 +02:00
2021-02-05 12:27:30 +01:00
<ItemGroup >
<PackageReference Include= "Umbraco.Cms" Version= "UMBRACO_VERSION_FROM_TEMPLATE" />
<PackageReference Include= "Umbraco.Cms.SqlCe" Version= "UMBRACO_VERSION_FROM_TEMPLATE" Condition= "'$(UseSqlCe)' == 'true'" />
<PackageReference Include= "Umbraco.SqlServerCE" Version= "4.0.0.1" Condition= "'$(UseSqlCe)' == 'true'" />
</ItemGroup>
2020-08-11 08:28:16 +02:00
2021-11-04 11:05:39 +01:00
<!-- Force windows to use ICU. Otherwise Windows 10 2019H1+ will do it, but older windows 10 and most if not all winodws servers will run NLS -->
2022-02-10 12:03:35 +00:00
<ItemGroup >
<PackageReference Include= "Microsoft.ICU.ICU4C.Runtime" Version= "68.2.0.9" />
<RuntimeHostConfigurationOption
Condition="$(RuntimeIdentifier.StartsWith('linux')) Or $(RuntimeIdentifier.StartsWith('win')) Or ('$(RuntimeIdentifier)' == '' And !$([MSBuild]::IsOSPlatform('osx')))"
Include="System.Globalization.AppLocalIcu"
Value="68.2.0.9" />
2021-11-04 11:05:39 +01:00
</ItemGroup>
2021-11-03 14:29:59 +01:00
2021-11-04 11:05:39 +01:00
<Import Project= "..\PackageTestSiteName\build\PackageTestSiteName.targets" Condition= "'$(PackageTestSiteName)' != ''" />
2021-08-24 16:44:39 +01:00
2021-03-21 12:55:33 +01:00
<ItemGroup Condition= "'$(PackageTestSiteName)' != ''" >
2021-08-24 16:44:39 +01:00
<ProjectReference Include= "..\PackageTestSiteName\PackageTestSiteName.csproj" />
2021-03-19 22:06:54 +01:00
</ItemGroup>
2021-10-06 14:38:50 +02:00
<PropertyGroup >
<CopyRazorGenerateFilesToPublishDirectory > true</CopyRazorGenerateFilesToPublishDirectory>
</PropertyGroup>
2021-06-11 13:09:41 +01:00
<!-- Set this to true if ModelsBuilder mode is not InMemoryAuto -->
2021-02-05 12:27:30 +01:00
<PropertyGroup >
<RazorCompileOnBuild > false</RazorCompileOnBuild>
2021-07-05 12:03:58 +02:00
<RazorCompileOnPublish > false</RazorCompileOnPublish>
2021-02-05 12:27:30 +01:00
</PropertyGroup>
2021-08-24 16:44:39 +01:00
2020-08-11 08:28:16 +02:00
</Project>