first try?

This commit is contained in:
2025-10-04 19:20:37 -04:00
commit 8e27190afb
4 changed files with 573 additions and 0 deletions

27
AlwaysRecFace.csproj Normal file
View File

@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>AlwaysRecFace</AssemblyName>
<Product>My first plugin</Product>
<Version>1.0.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json
</RestoreAdditionalProjectSources>
<RootNamespace>AlwaysRecFace</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
</ItemGroup>
<ItemGroup>
<Reference Include="undead_universal_patch_il2cpp">
<HintPath>AssemblyReferences\undead_universal_patch_il2cpp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>