-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCrossing.csproj
49 lines (49 loc) · 1.78 KB
/
Crossing.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
</PropertyGroup>
<ItemGroup>
<Reference Include="Eco.Core">
<HintPath>./dll/Eco.Core.dll</HintPath>
</Reference>
<Reference Include="Eco.Gameplay">
<HintPath>./dll/Eco.Gameplay.dll</HintPath>
</Reference>
<Reference Include="Eco.IntegrationTests">
<HintPath>./dll/Eco.IntegrationTests.dll</HintPath>
</Reference>
<Reference Include="Eco.ModKit">
<HintPath>./dll/Eco.ModKit.dll</HintPath>
</Reference>
<Reference Include="Eco.Networking.ENet">
<HintPath>./dll/Eco.Networking.ENet.dll</HintPath>
</Reference>
<Reference Include="Eco.Plugins">
<HintPath>./dll/Eco.Plugins.dll</HintPath>
</Reference>
<Reference Include="Eco.Shared">
<HintPath>./dll/Eco.Shared.dll</HintPath>
</Reference>
<Reference Include="Eco.Simulation">
<HintPath>./dll/Eco.Simulation.dll</HintPath>
</Reference>
<Reference Include="Eco.Stats">
<HintPath>./dll/Eco.Stats.dll</HintPath>
</Reference>
<Reference Include="Eco.WebServer">
<HintPath>./dll/Eco.WebServer.dll</HintPath>
</Reference>
<Reference Include="Eco.World">
<HintPath>./dll/Eco.World.dll</HintPath>
</Reference>
<Reference Include="Eco.WorldGenerator">
<HintPath>./dll/Eco.WorldGenerator.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="2.2.0"/>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4"/>
</ItemGroup>
</Project>