-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVC.Web.UI.csproj
More file actions
42 lines (37 loc) · 1.8 KB
/
VC.Web.UI.csproj
File metadata and controls
42 lines (37 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\_template\**" />
<Content Remove="wwwroot\_template\**" />
<EmbeddedResource Remove="wwwroot\_template\**" />
<None Remove="wwwroot\_template\**" />
</ItemGroup>
<ItemGroup>
<Content Include="wwwroot\media\asjpsoy3\home-banner.jpg" />
<Content Include="wwwroot\media\rf3dwogj\how-we-are-different.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SeoToolkit.Umbraco" Version="3.3.0" />
<PackageReference Include="Umbraco.Cms" Version="12.3.4" />
<PackageReference Include="uSync.Complete" Version="12.1.0" />
</ItemGroup>
<ItemGroup>
<!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms -->
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" />
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2.0.9" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
</ItemGroup>
<PropertyGroup>
<!-- Razor files are needed for the backoffice to work correctly -->
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
</PropertyGroup>
<PropertyGroup>
<!-- Remove RazorCompileOnBuild and RazorCompileOnPublish when not using ModelsMode InMemoryAuto -->
<RazorCompileOnBuild>false</RazorCompileOnBuild>
<RazorCompileOnPublish>false</RazorCompileOnPublish>
<UserSecretsId>b018d02c-8f60-4fc8-926c-1209d620c4c9</UserSecretsId>
</PropertyGroup>
</Project>