-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathGame.Server.csproj
More file actions
26 lines (21 loc) · 1.01 KB
/
Game.Server.csproj
File metadata and controls
26 lines (21 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>QuantumCore.Game.Server</AssemblyName>
<RootNamespace>QuantumCore.Game</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Enums.NET" Version="5.0.0"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Game.Tests"/>
<InternalsVisibleTo Include="Core.Tests"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Core.csproj"/>
<ProjectReference Include="..\..\Data\Game.Caching\Game.Caching.csproj"/>
<ProjectReference Include="..\..\Data\Game.Persistence\Game.Persistence.csproj"/>
<ProjectReference Include="..\..\Core.Networking.Generators\Core.Networking.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<ProjectReference Include="..\..\Libraries\Game.Commands\Game.Commands.csproj"/>
</ItemGroup>
</Project>