-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v-rising-discord-bot-companion.csproj
28 lines (24 loc) · 1.3 KB
/
v-rising-discord-bot-companion.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>v-rising-discord-bot-companion</AssemblyName>
<Description>A companion mod for DarkAtra/v-rising-discord-bot.</Description>
<Version>0.4.1</Version>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<RootNamespace>v_rising_discord_bot_companion</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.691" IncludeAssets="compile"/>
<PackageReference Include="BepInEx.Core" Version="6.0.0-be.691" IncludeAssets="compile"/>
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.1.0"/>
<PackageReference Include="VRising.Bloodstone" Version="0.2.2"/>
<PackageReference Include="VRising.Unhollowed.Client" Version="1.0.5.802790001"/>
</ItemGroup>
<Target Name="CopyDLLsToBuildOutput" AfterTargets="Build">
<Message Text="Copying plugin dlls to build directory" Importance="High"/>
<Copy SourceFiles="$(TargetDir)$(ProjectName).dll" DestinationFolder="build"/>
<Message Text="Successfuly copied plugin dlls" Importance="High"/>
</Target>
</Project>