-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCrimsonSQL.csproj
More file actions
64 lines (64 loc) · 2.98 KB
/
CrimsonSQL.csproj
File metadata and controls
64 lines (64 loc) · 2.98 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>CrimsonSQL</AssemblyName>
<Description>MySQL for IL2CPP BepInEx</Description>
<Version>0.1.10</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RootNamespace>CrimsonSQL</RootNamespace>
<AssemblyVersion>0.1.10.0</AssemblyVersion>
<FileVersion>0.1.10.0</FileVersion>
<InformationalVersion>0.1.10+1.Branch.main.Sha.c33d0879382e1a0da34861ec55914ba7e637a80e</InformationalVersion>
</PropertyGroup>
<PropertyGroup>
<PackageId>VRising.CrimsonSQL</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>SkyTech6, CrimsonMods</Authors>
<Description>MySQL for IL2CPP BepInEx</Description>
<PackageIcon>images/logo_256.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>VRising</PackageTags>
<PackageRepositoryUrl>https://github.com/CrimsonMods/CrimsonSQL</PackageRepositoryUrl>
</PropertyGroup>
<Target Name="Thunderstore Copy to Dist" AfterTargets="AfterBuild"
Condition=" '$(Configuration' == 'Release'">
<Copy SourceFiles="$(OutDir)\CrimsonSQL.dll" DestinationFolder="$(SolutionDir)/dist" />
</Target>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.733"
IncludeAssets="compile" />
<PackageReference Include="BepInEx.Core" Version="6.0.0-be.733" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.9.1">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MySqlConnector" Version="2.4.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="images\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource
Include="$(NuGetPackageRoot)mysqlconnector\2.4.0\lib\net6.0\MySqlConnector.dll" />
<EmbeddedResource
Include="$(NuGetPackageRoot)system.diagnostics.diagnosticsource\8.0.1\lib\net6.0\System.Diagnostics.DiagnosticSource.dll" />
<EmbeddedResource
Include="$(NuGetPackageRoot)system.security.permissions\4.7.0\lib\netcoreapp3.0\System.Security.Permissions.dll" />
<EmbeddedResource
Include="$(NuGetPackageRoot)system.configuration.configurationmanager\4.7.0\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll" />
<EmbeddedResource
Include="$(NuGetPackageRoot)system.text.encoding.codepages\4.7.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll" />
</ItemGroup>
<ItemGroup>
<None Include=".github\FUNDING.yml" />
<None Include=".github\workflows\build.yml" />
<None Include="images/logo_256.png" Pack="true" PackagePath="images/" />
<None Include="README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>