-
Notifications
You must be signed in to change notification settings - Fork 0
/
PreventPickup.csproj
57 lines (50 loc) · 2.19 KB
/
PreventPickup.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RoR2AssemblyPath>E:\Games\Steam\steamapps\common\Risk of Rain 2\Risk of Rain 2_Data\Managed</RoR2AssemblyPath>
<BepInExPath>$(AppData)\r2modmanPlus-local\RiskOfRain2\profiles\PreventPickup\BepInEx</BepInExPath>
<AssemblySearchPaths>
$(BepInExPath)\core;
$(BepInExPath)\plugins\tristanmcpherson-R2API\R2API;
$(BepInExPath)\plugins\RiskofThunder-HookGenPatcher\MMHOOK;
$(BepInExPath)\plugins\Rune580-Risk_Of_Options;
$(RoR2AssemblyPath);
$(AssemblySearchPaths);
</AssemblySearchPaths>
<CopyDocumentationFileToOutputDirectory>False</CopyDocumentationFileToOutputDirectory>
<CreateHardLinksForAdditionalFilesIfPossible>True</CreateHardLinksForAdditionalFilesIfPossible>
<CreateHardLinksForCopyFilesToOutputDirectoryIfPossible>True</CreateHardLinksForCopyFilesToOutputDirectoryIfPossible>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<GenerateDependencyFile>yiff</GenerateDependencyFile>
<NoLogo>True</NoLogo>
<Optimize>True</Optimize>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetName>PreventPickup</TargetName>
</PropertyGroup>
<ItemGroup>
<Reference Include="
Assembly-CSharp;
BepInEx;
MMHOOK_Assembly-CSharp;
R2API;
RoR2;
UnityEngine;
UnityEngine.CoreModule;
UnityEngine.InputLegacyModule;
UnityEngine.UI;
UnityEngine.ImageConversionModule;
Unity.TextMeshPro;
com.unity.multiplayer-hlapi.Runtime;
RiskOfOptions;
">
<Private>False</Private>
</Reference>
<EmbeddedResource Include="images/icon.png" LogicalName="icon" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="powershell -executionpolicy remotesigned -File "$(ProjectDir)dev\post_build.ps1" $(TargetDir) $(TargetFileName) $(ProjectDir) $(SolutionName)" />
</Target>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="powershell -executionpolicy remotesigned -File "$(ProjectDir)dev\pre_build.ps1" $(ProjectDir) $(SolutionName)" />
</Target>
</Project>