1
0
mirror of synced 2025-02-12 00:52:58 +01:00
TakoTako/test/MyFirstPlugin/MyFirstPlugin.csproj
2022-08-14 13:39:31 +10:00

18 lines
611 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>MyFirstPlugin</AssemblyName>
<Description>My first plugin</Description>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.IL2CPP" Version="6.0.0-*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
<PackageReference Include="Taiko.GameLibs" Version="1.3.1-r.0" />
</ItemGroup>
</Project>