-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVRisingServerApiPlugin.csproj
35 lines (30 loc) · 1.63 KB
/
VRisingServerApiPlugin.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>VRisingServerApiPlugin</AssemblyName>
<Description>Plugin used to better interface between the Server and the API</Description>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RootNamespace>VRisingServerApiPlugin</RootNamespace>
<Authors>jays</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<BepInExPluginGuid>jays.VRisingServerApiPlugin</BepInExPluginGuid>
<GamePath>C:\Users\Jérémy\Documents\GitHub\v-rising-server\server\bin</GamePath>
<PluginsPath>$(GamePath)\BepInEx\plugins</PluginsPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.Core" Version="6.0.0-pre.1" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.1.0" />
<PackageReference Include="VRising.Unhollowed.Client" Version="0.6.5.57575090" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<Target Name="CopyDLLsToTargetServer" AfterTargets="Build">
<Message Text="Copying plugin dlls to dev server" Importance="High" />
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll;$(TargetDir)$(ProjectName).pdb" DestinationFolder="$(PluginsPath)" />
<Message Text="Successfuly copied plugin dlls" Importance="High" />
</Target>
</Project>