-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCrimsonFAQ.csproj
31 lines (31 loc) · 1.42 KB
/
CrimsonFAQ.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>CrimsonFAQ</AssemblyName>
<Description>AutoResponder System</Description>
<Version>0.1.10</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RootNamespace>CrimsonFAQ</RootNamespace>
<AssemblyVersion>0.1.10.0</AssemblyVersion>
<FileVersion>0.1.10.0</FileVersion>
<InformationalVersion>0.1.10+1.Branch.main.Sha.c33d0879382e1a0da34861ec55914ba7e637a80e</InformationalVersion>
</PropertyGroup>
<Target Name="Thunderstore Copy to Dist" AfterTargets="AfterBuild" Condition=" '$(Configuration' == 'Release'">
<Copy SourceFiles="$(OutDir)\CrimsonFAQ.dll" DestinationFolder="$(SolutionDir)/dist" />
</Target>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.716" IncludeAssets="compile" />
<PackageReference Include="BepInEx.Core" Version="6.0.0-be.716" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
<PackageReference Include="VRising.Unhollowed.Client" Version="1.0.*" />
<PackageReference Include="VRising.VampireCommandFramework" Version="0.9.0" />
</ItemGroup>
<ItemGroup>
<None Include=".github\FUNDING.yml" />
<None Include=".github\workflows\build.yml" />
</ItemGroup>
<ItemGroup>
<Folder Include="images\" />
</ItemGroup>
</Project>