From 3bcf9016e23133d9b051dbd65ce682fddf6b5bc5 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 22 May 2024 09:41:43 -0400 Subject: Moved into subdir --- AnodyneArchipelago.csproj | 32 ------------------------- AnodyneArchipelago.sln | 10 ++++---- AnodyneArchipelago/AnodyneArchipelago.csproj | 36 ++++++++++++++++++++++++++++ AnodyneArchipelago/NuGet.Config | 6 +++++ AnodyneArchipelago/Plugin.cs | 15 ++++++++++++ NuGet.Config | 6 ----- Plugin.cs | 15 ------------ 7 files changed, 62 insertions(+), 58 deletions(-) delete mode 100644 AnodyneArchipelago.csproj create mode 100644 AnodyneArchipelago/AnodyneArchipelago.csproj create mode 100644 AnodyneArchipelago/NuGet.Config create mode 100644 AnodyneArchipelago/Plugin.cs delete mode 100644 NuGet.Config delete mode 100644 Plugin.cs diff --git a/AnodyneArchipelago.csproj b/AnodyneArchipelago.csproj deleted file mode 100644 index a97b715..0000000 --- a/AnodyneArchipelago.csproj +++ /dev/null @@ -1,32 +0,0 @@ - - - - net462 - AnodyneArchipelago - My first plugin - 1.0.0 - true - latest - x64 - - - - - - - - - - - - - ..\BepInEx\Runtimes\NET\BepInEx.NET.Common\bin\Debug\net462\0Harmony.dll - - - ..\BepInEx\Runtimes\NET\BepInEx.NET.Common\bin\Debug\net462\BepInEx.Core.dll - - - ..\BepInEx\Runtimes\NET\BepInEx.NET.Common\bin\Debug\net462\BepInEx.NET.Common.dll - - - diff --git a/AnodyneArchipelago.sln b/AnodyneArchipelago.sln index 8f5a1f2..a385f63 100644 --- a/AnodyneArchipelago.sln +++ b/AnodyneArchipelago.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32825.248 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnodyneArchipelago", "AnodyneArchipelago.csproj", "{88711B83-00FB-49C9-8963-CC3461B8F964}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnodyneArchipelago", "AnodyneArchipelago\AnodyneArchipelago.csproj", "{ECD7475F-3E22-4667-879D-7FD2E531E6A2}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,10 +11,10 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {88711B83-00FB-49C9-8963-CC3461B8F964}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {88711B83-00FB-49C9-8963-CC3461B8F964}.Debug|Any CPU.Build.0 = Debug|Any CPU - {88711B83-00FB-49C9-8963-CC3461B8F964}.Release|Any CPU.ActiveCfg = Release|Any CPU - {88711B83-00FB-49C9-8963-CC3461B8F964}.Release|Any CPU.Build.0 = Release|Any CPU + {ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ECD7475F-3E22-4667-879D-7FD2E531E6A2}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/AnodyneArchipelago/AnodyneArchipelago.csproj b/AnodyneArchipelago/AnodyneArchipelago.csproj new file mode 100644 index 0000000..5ad5e82 --- /dev/null +++ b/AnodyneArchipelago/AnodyneArchipelago.csproj @@ -0,0 +1,36 @@ + + + + net462 + AnodyneArchipelago + My first plugin + 1.0.0 + true + latest + x64 + + + + + + + + + + + + + + ..\..\BepInEx\bin\NET.Framework\net462\0Harmony.dll + + + ..\..\..\SteamLibrary\steamapps\common\Anodyne\Remake\AnodyneSharp.exe + + + ..\..\BepInEx\bin\NET.Framework\net462\BepInEx.Core.dll + + + ..\..\BepInEx\bin\NET.Framework\net462\BepInEx.NET.Common.dll + + + diff --git a/AnodyneArchipelago/NuGet.Config b/AnodyneArchipelago/NuGet.Config new file mode 100644 index 0000000..1864ded --- /dev/null +++ b/AnodyneArchipelago/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AnodyneArchipelago/Plugin.cs b/AnodyneArchipelago/Plugin.cs new file mode 100644 index 0000000..411a2a4 --- /dev/null +++ b/AnodyneArchipelago/Plugin.cs @@ -0,0 +1,15 @@ +using BepInEx; +using BepInEx.NET.Common; + +namespace AnodyneArchipelago +{ + [BepInPlugin("com.fourisland.plugins.anodyne.archipelago", "Anodyne Archipelago", "1.0.0.0")] + public class Plugin : BasePlugin + { + public override void Load() + { + // Plugin startup logic + Log.LogInfo($"Plugin {PluginInfo.PLUGIN_GUID} is loaded!"); + } + } +} diff --git a/NuGet.Config b/NuGet.Config deleted file mode 100644 index 1864ded..0000000 --- a/NuGet.Config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Plugin.cs b/Plugin.cs deleted file mode 100644 index 411a2a4..0000000 --- a/Plugin.cs +++ /dev/null @@ -1,15 +0,0 @@ -using BepInEx; -using BepInEx.NET.Common; - -namespace AnodyneArchipelago -{ - [BepInPlugin("com.fourisland.plugins.anodyne.archipelago", "Anodyne Archipelago", "1.0.0.0")] - public class Plugin : BasePlugin - { - public override void Load() - { - // Plugin startup logic - Log.LogInfo($"Plugin {PluginInfo.PLUGIN_GUID} is loaded!"); - } - } -} -- cgit 1.4.1