diff --git a/ExamplePatchMod/BepInEx.cs b/BepInEx.cs similarity index 100% rename from ExamplePatchMod/BepInEx.cs rename to BepInEx.cs diff --git a/ExamplePatchMod/ExamplePatchMod.csproj b/ExamplePatchMod.csproj similarity index 95% rename from ExamplePatchMod/ExamplePatchMod.csproj rename to ExamplePatchMod.csproj index 267c38a..02af75b 100644 --- a/ExamplePatchMod/ExamplePatchMod.csproj +++ b/ExamplePatchMod.csproj @@ -4,7 +4,7 @@ Debug AnyCPU - {81d8c460-4627-489b-8d5e-a0640866290f} + {81D8C460-4627-489B-8D5E-A0640866290F} Library Properties ExamplePatchMod @@ -57,7 +57,9 @@ + + \ No newline at end of file diff --git a/ExamplePatchMod.sln b/ExamplePatchMod.sln index e133800..c263c3c 100644 --- a/ExamplePatchMod.sln +++ b/ExamplePatchMod.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.14.36511.14 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePatchMod", "ExamplePatchMod\ExamplePatchMod.csproj", "{81D8C460-4627-489B-8D5E-A0640866290F}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExamplePatchMod", "ExamplePatchMod.csproj", "{81D8C460-4627-489B-8D5E-A0640866290F}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Patches/ExamplePatchClass.cs b/Patches/ExamplePatchClass.cs new file mode 100644 index 0000000..9f96802 --- /dev/null +++ b/Patches/ExamplePatchClass.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ExamplePatchMod.Patches +{ + internal class ExamplePatchClass + { + } +} diff --git a/ExamplePatchMod/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs similarity index 100% rename from ExamplePatchMod/Properties/AssemblyInfo.cs rename to Properties/AssemblyInfo.cs