-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswetugg-public.csproj
39 lines (33 loc) · 1.31 KB
/
swetugg-public.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>swetugg_public</RootNamespace>
<UserSecretsId>96457826-7118-4076-8e67-240917f32ca9</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Content Remove="Pages\gbg-2023\Sponsorship.cshtml" />
<Content Remove="Pages\gbg-2024\Sponsorship.cshtml" />
<Content Remove="Pages\sthlm-2024\Sponsorship.cshtml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="westwind.aspnetcore.markdown" Version="3.12.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\logos\" />
</ItemGroup>
<ItemGroup>
<Content Update="Pages\gbg_logos.cshtml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Pages\sthlm_logos.cshtml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>