-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHypercrit.csproj
71 lines (66 loc) · 2.47 KB
/
Hypercrit.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\lib\Assembly-CSharp.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="BepInEx">
<HintPath>..\lib\BepInEx.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="com.unity.multiplayer-hlapi.Runtime">
<HintPath>lib\com.unity.multiplayer-hlapi.Runtime.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_Assembly-CSharp">
<HintPath>lib\MMHOOK_Assembly-CSharp.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="MMHOOK_RoR2">
<HintPath>lib\MMHOOK_RoR2.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil">
<HintPath>..\lib\Mono.Cecil.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="MonoMod.RuntimeDetour">
<HintPath>lib\MonoMod.RuntimeDetour.dll</HintPath>
</Reference>
<Reference Include="MonoMod.Utils">
<HintPath>..\lib\MonoMod.Utils.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="R2API">
<HintPath>..\lib\R2API\R2API.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="RoR2">
<HintPath>lib\RoR2.dll</HintPath>
</Reference>
<Reference Include="Unity.TextMeshPro">
<HintPath>..\lib\Unity.TextMeshPro.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\lib\UnityEngine.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\lib\UnityEngine.CoreModule.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="UnityEngine.Networking">
<HintPath>..\RiskOfMods2\REF\Managed\UnityEngine.Networking.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(TargetPath)" "$(ProjectDir)Build\$(ProjectName)" /Y
xcopy "$(ProjectDir)ModMeta" "$(ProjectDir)Build\$(ProjectName)" /Y" />
</Target>
</Project>