Init repo

This commit is contained in:
2026-05-16 22:08:50 -07:00
parent cad38fcb80
commit 8bac2fec7b
2 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Radium.InputManagerPatch</AssemblyName>
<Product>Awesome patch for InputManager in Radium's 2021 build to set the input type to whatever you desire!</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>Radium.InputManagerPatch</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.*" IncludeAssets="compile" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>AssemblyReferences\Assembly-CSharp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>