forked from decaprime/VampireCommandFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVCF.Core.csproj
33 lines (31 loc) · 1.49 KB
/
VCF.Core.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>VampireCommandFramework</AssemblyName>
<Description>Framework for commands in V Rising</Description>
<Version>0.0.999</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<NuspecFile>../nuget.nuspec</NuspecFile>
<NuspecProperties>version=$(Version)</NuspecProperties>
<BepInExPluginGuid>gg.deca.VampireCommandFramework</BepInExPluginGuid>
<PackageId>VampireCommandFramework</PackageId>
<RootNamespace>VampireCommandFramework</RootNamespace>
<Authors>deca</Authors>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<!-- Copy VampireCommandFramework.dll to /dist -->
<Target Name="Thunderstore Copy to Dist" AfterTargets="AfterBuild" Condition=" '$(Configuration)' == 'Release'">
<Copy SourceFiles="$(OutDir)\VampireCommandFramework.dll" DestinationFolder="$(SolutionDir)/dist" />
</Target>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.690" IncludeAssets="compile" />
<PackageReference Include="BepInEx.Core" Version="6.0.0-be.690" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
<PackageReference Include="VRising.Unhollowed.Client" Version="1.0.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="VCF.Tests" />
</ItemGroup>
</Project>