Initial Commit

This commit is contained in:
2026-03-31 20:57:22 +01:00
parent 3ef83b7790
commit 4177dd357e
53 changed files with 3598 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("MyFirstPlugin")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("My first plugin")]
[assembly: System.Reflection.AssemblyTitleAttribute("MyFirstPlugin")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
b5aa27fe25b3bba75f49e26e236c64a1a702c4d03e838dbfcd1478f092ca6cd5

View File

@@ -0,0 +1,8 @@
is_global = true
build_property.RootNamespace = MyFirstPlugin
build_property.ProjectDir = /Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
build_property.EffectiveAnalysisLevelStyle =
build_property.EnableCodeStyleSeverity =

Binary file not shown.

View File

@@ -0,0 +1 @@
e8eb08761a7582d0862948f010b9fb6432af35f7fcc23908fd3000f15d544a6d

View File

@@ -0,0 +1,6 @@
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyPluginInfo.cs
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs
/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache

View File

@@ -0,0 +1,9 @@
namespace MyFirstPlugin
{
public static class MyPluginInfo
{
public const string PLUGIN_GUID = "UnlockAllRecipes";
public const string PLUGIN_NAME = "Unlock All Recipes";
public const string PLUGIN_VERSION = "1.0.0";
}
}