-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEclipse.csproj
More file actions
28 lines (28 loc) · 1.16 KB
/
Eclipse.csproj
File metadata and controls
28 lines (28 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<BepInExPluginGuid>io.zfolmt.Eclipse</BepInExPluginGuid>
<AssemblyName>Eclipse</AssemblyName>
<Version>1.3.13</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<LangVersion>preview</LangVersion>
<RestoreSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.1.0" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.733" />
<PackageReference Include="VampireReferenceAssemblies" Version="1.1.11-r96495-b8" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\secrets.json" />
<EmbeddedResource Include="Resources\Localization\English.json" />
</ItemGroup>
<Target Name="BuildToClient" AfterTargets="Build">
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll" DestinationFolder="C:\Program Files (x86)\Steam\steamapps\common\VRising\BepInEx\plugins" />
</Target>
</Project>