-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpaceEngineers.csproj
47 lines (42 loc) · 1.69 KB
/
SpaceEngineers.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
</PropertyGroup>
<PropertyGroup>
<!--SpaceEngineers>C:\Program Files (x86)\Steam\steamapps\common\SpaceEngineers</SpaceEngineers-->
<SpaceEngineers>E:\SteamLibrary\steamapps\common\SpaceEngineers</SpaceEngineers>
</PropertyGroup>
<ItemGroup>
<Reference Include="Sandbox.Common">
<HintPath>$(SpaceEngineers)\Bin64\Sandbox.Common.dll</HintPath>
</Reference>
<Reference Include="Sandbox.Game">
<HintPath>$(SpaceEngineers)\Bin64\Sandbox.Game.dll</HintPath>
</Reference>
<Reference Include="SpaceEngineers">
<HintPath>$(SpaceEngineers)\Bin64\SpaceEngineers.exe</HintPath>
</Reference>
<Reference Include="SpaceEngineers.Game">
<HintPath>$(SpaceEngineers)\Bin64\SpaceEngineers.Game.dll</HintPath>
</Reference>
<Reference Include="SpaceEngineers.ObjectBuilders">
<HintPath>$(SpaceEngineers)\Bin64\SpaceEngineers.ObjectBuilders.dll</HintPath>
</Reference>
<Reference Include="VRage">
<HintPath>$(SpaceEngineers)\Bin64\VRage.dll</HintPath>
</Reference>
<Reference Include="VRage.Game">
<HintPath>$(SpaceEngineers)\Bin64\VRage.Game.dll</HintPath>
</Reference>
<Reference Include="VRage.Library">
<HintPath>$(SpaceEngineers)\Bin64\VRage.Library.dll</HintPath>
</Reference>
<Reference Include="VRage.Math">
<HintPath>$(SpaceEngineers)\Bin64\VRage.Math.dll</HintPath>
</Reference>
</ItemGroup>
</Project>