-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCommunityCommands.csproj
More file actions
25 lines (25 loc) · 1.28 KB
/
CommunityCommands.csproj
File metadata and controls
25 lines (25 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>CommunityCommands</AssemblyName>
<Description>Generic Server Commands for running communities by the community.</Description>
<Version>0.1.2</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RootNamespace>CommunityCommands</RootNamespace>
<Authors>deca</Authors>
<BepInExPluginGuid>gg.deca.CommunityCommands</BepInExPluginGuid>
</PropertyGroup>
<!-- Copy CommunityCommands.dll to /dist -->
<Target Name="Thunderstore Copy to Dist" AfterTargets="AfterBuild" Condition=" '$(Configuration)' == 'Release'">
<Copy SourceFiles="$(OutDir)\CommunityCommands.dll" DestinationFolder="$(ProjectDir)/dist" />
</Target>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.668" IncludeAssets="compile" />
<PackageReference Include="BepInEx.Core" Version="6.0.0-be.668" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
<PackageReference Include="VRising.Bloodstone" Version="0.1.*" />
<PackageReference Include="VRising.Unhollowed.Client" Version="0.6.5.57575090" />
<PackageReference Include="VRising.VampireCommandFramework" Version="0.8.*" />
</ItemGroup>
</Project>