-
Notifications
You must be signed in to change notification settings - Fork 0
/
MultiplayerMod.csproj
55 lines (53 loc) · 2.46 KB
/
MultiplayerMod.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
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MultiplayerMod</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="BepInEx">
<HintPath>../Poly Bridge 2/BepInEx/core/BepInEx.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="HarmonyX">
<HintPath>../Poly Bridge 2/BepInEx/core/0Harmony.dll</HintPath>
</Reference>
<Reference Include="BepInEx.Harmony">
<HintPath>../Poly Bridge 2/BepInEx/core/BepInEx.Harmony.dll</HintPath>
</Reference>
<Reference Include="PolyTechFramework">
<HintPath>../Poly Bridge 2/BepInEx/plugins/PolyTechFramework.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.IMGUIModule">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.IMGUIModule.dll</HintPath>
</Reference>
<Reference Include="ConfigurationManager">
<HintPath>../Poly Bridge 2/BepInEx/plugins/ConfigurationManager.dll</HintPath>
</Reference>
<Reference Include="Unity.TextMeshPro">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/Unity.TextMeshPro.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.Networking">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.Networking.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UnityWebRequestModule">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.UnityWebRequestModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.JSONSerializeModule">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.JSONSerializeModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>../Poly Bridge 2/Poly Bridge 2_Data/Managed/UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
</ItemGroup>
</Project>