-
Notifications
You must be signed in to change notification settings - Fork 3
/
PcrBattleChannel.csproj
52 lines (44 loc) · 2.16 KB
/
PcrBattleChannel.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>aspnet-PcrBattleChannel-4ECC64FD-F456-428B-BD68-4BF6A8DAD2F8</UserSecretsId>
<AssemblyVersion>0.3.0.0</AssemblyVersion>
<FileVersion>0.2.0.0</FileVersion>
<Version>0.3.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="Models\CharacterAliasTable.csv" />
<None Remove="Models\InitCharacterData.csv" />
<None Remove="Models\InitCharacterData.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Models\CharacterAliasTable.csv" />
<EmbeddedResource Include="Models\InitCharacterData.csv" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="21.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="5.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.jQuery.Unobtrusive.Ajax" Version="3.2.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.1" />
<PackageReference Include="Z.EntityFramework.Plus.EFCore" Version="5.1.13" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\images\icons\" />
</ItemGroup>
</Project>