-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCloudRP.csproj
48 lines (42 loc) · 1.73 KB
/
CloudRP.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="client\**" />
<Compile Remove="cloudrp-frontend\**" />
<EmbeddedResource Remove="client\**" />
<EmbeddedResource Remove="cloudrp-frontend\**" />
<None Remove="client\**" />
<None Remove="cloudrp-frontend\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Cryptography.KeyDerivation" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Design" Version="1.1.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="Bootstrapper">
<HintPath>..\..\runtime\Bootstrapper.dll</HintPath>
</Reference>
<Reference Include="Discord.Net.Core">
<HintPath>..\..\runtime\Discord.Net.Core.dll</HintPath>
</Reference>
<Reference Include="Discord.Net.Rest">
<HintPath>..\..\runtime\Discord.Net.Rest.dll</HintPath>
</Reference>
<Reference Include="Discord.Net.WebSocket">
<HintPath>..\..\runtime\Discord.Net.WebSocket.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="ClientSide\game_resources\common\data\" />
</ItemGroup>
</Project>