-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBobFix.csproj
More file actions
62 lines (58 loc) · 2.48 KB
/
BobFix.csproj
File metadata and controls
62 lines (58 loc) · 2.48 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>BobFix</AssemblyName>
<Description>My first plugin</Description>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.*" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
<PackageReference Include="UnityEngine.Modules" Version="2022.3.40" IncludeAssets="compile" />
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.2" PrivateAssets="all"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp" Publicize="true">
<HintPath>game-dlls\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="BazaarBattleService">
<HintPath>game-dlls\BazaarBattleService.dll</HintPath>
</Reference>
<Reference Include="BazaarGameClient">
<HintPath>game-dlls\BazaarGameClient.dll</HintPath>
</Reference>
<Reference Include="BazaarGameShared">
<HintPath>game-dlls\BazaarGameShared.dll</HintPath>
</Reference>
<Reference Include="BazaarUnityTools">
<HintPath>game-dlls\BazaarUnityTools.dll</HintPath>
</Reference>
<Reference Include="TMPro">
<HintPath>game-dlls\Unity.TextMeshPro.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>game-dlls\UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_Assembly-CSharp">
<HintPath>mmhook-dlls\MMHOOK_Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_BazaarBattleService">
<HintPath>mmhook-dlls\MMHOOK_BazaarBattleService.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_BazaarGameClient">
<HintPath>mmhook-dlls\MMHOOK_BazaarGameClient.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_BazaarGameShared">
<HintPath>mmhook-dlls\MMHOOK_BazaarGameShared.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_BazaarUnityTools">
<HintPath>mmhook-dlls\MMHOOK_BazaarUnityTools.dll</HintPath>
</Reference>
</ItemGroup>
</Project>