1
0
mirror of synced 2025-02-14 09:52:39 +01:00
TakoTako/test/MyFirstPlugin/MyFirstPlugin.csproj

18 lines
611 B
XML
Raw Normal View History

2022-08-13 21:00:45 +10:00
<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>