This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
ExamplePlugin.csproj
78 lines (73 loc) · 2.6 KB
/
ExamplePlugin.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
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="libs\**" />
<EmbeddedResource Remove="libs\**" />
<None Remove="libs\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.0.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="BepInEx.Core" Version="5.4.21" />
<PackageReference Include="R2API.Core" Version="5.0.6" />
<PackageReference Include="R2API.Items" Version="1.0.1" />
<PackageReference Include="R2API.Language" Version="1.0.0" />
<PackageReference Include="RiskOfRain2.GameLibs" Version="1.2.4-r.0" />
<PackageReference Include="UnityEngine.Modules" Version="2019.4.26" />
<PackageReference Include="MMHOOK.RoR2" Version="2022.9.20">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Facepunch.Steamworks">
<HintPath>libs\Facepunch.Steamworks.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="KdTreeLib">
<HintPath>libs\KdTreeLib.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Mono.Security">
<HintPath>libs\Mono.Security.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="pb_Stl">
<HintPath>libs\pb_Stl.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Poly2Tri">
<HintPath>libs\Poly2Tri.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="ProBuilderCore">
<HintPath>libs\ProBuilderCore.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="ProBuilderMeshOps">
<HintPath>libs\ProBuilderMeshOps.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Rewired_Windows_Lib">
<HintPath>libs\Rewired_Windows_Lib.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="SimpleJSON">
<HintPath>libs\SimpleJSON.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Wwise">
<HintPath>libs\Wwise.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="Zio">
<HintPath>libs\Zio.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</Project>