-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoreSalts.csproj
38 lines (34 loc) · 1.35 KB
/
MoreSalts.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony">
<HintPath>..\..\PotionCraftDLLs\0Harmony.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\PotionCraftDLLs\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="BasicMod">
<HintPath>..\..\PotionCraftDLLs\BasicMod.dll</HintPath>
</Reference>
<Reference Include="BepInEx">
<HintPath>..\..\PotionCraftDLLs\BepInEx.dll</HintPath>
</Reference>
<Reference Include="BepInEx.Harmony">
<HintPath>..\..\PotionCraftDLLs\BepInEx.Harmony.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\PotionCraftDLLs\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>..\..\PotionCraftDLLs\UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.InputLegacyModule">
<HintPath>..\..\PotionCraftDLLs\UnityEngine.InputLegacyModule.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /y /d "$(ProjectDir)bin\Debug\net48\MoreSalts.dll" "$(POTION_CRAFT_PATH)\BepInEx\plugins"" />
</Target>
</Project>