-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLevelEditorWebApp.csproj
More file actions
43 lines (37 loc) · 1.73 KB
/
LevelEditorWebApp.csproj
File metadata and controls
43 lines (37 loc) · 1.73 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
43
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-LevelEditorWebApp-4932dd67-7ce3-40d1-a0d4-55c4dff2c1c7</UserSecretsId>
<PackageIcon>tri-horn-logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\lib\bootstrap\dist\**" />
<Content Remove="wwwroot\lib\bootstrap\dist\**" />
<EmbeddedResource Remove="wwwroot\lib\bootstrap\dist\**" />
<None Remove="wwwroot\lib\bootstrap\dist\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="bootstrap" Version="5.3.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.0.0-preview8.19405.7" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.16" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.23" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.23" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.23" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.23">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\uploads\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\img\tri-horn-logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>