-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWebApp.csproj
More file actions
34 lines (28 loc) · 1.32 KB
/
WebApp.csproj
File metadata and controls
34 lines (28 loc) · 1.32 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>aspnet-WebApp20170814_2-A211B1CC-717F-4108-BF54-E3416F2370F1</UserSecretsId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;0436</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;0436</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Update="wwwroot\**\*;navigation.xml">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\cloudscribe.SimpleContactForm.CoreIntegration\cloudscribe.SimpleContactForm.CoreIntegration.csproj" />
<ProjectReference Include="..\cloudscribe.SimpleContactForm\cloudscribe.SimpleContactForm.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="cloudscribe.Core.Web" Version="8.1.*" />
<PackageReference Include="cloudscribe.Core.CompiledViews.Bootstrap3" Version="8.1.0" />
<PackageReference Include="cloudscribe.Core.Storage.NoDb" Version="8.1.0" />
<PackageReference Include="cloudscribe.Logging.Web" Version="8.1.0" />
<PackageReference Include="cloudscribe.Logging.NoDb" Version="8.1.0" />
</ItemGroup>
</Project>