From 2ee7dcb851afc5e99460bb8b48ee02976c20ea27 Mon Sep 17 00:00:00 2001 From: jvyden Date: Sun, 17 Oct 2021 23:16:24 -0400 Subject: [PATCH] Initial Commit --- .gitignore | 5 +++++ .idea/.idea.UnionPatcher/.idea/.gitignore | 13 +++++++++++++ .idea/.idea.UnionPatcher/.idea/discord.xml | 7 +++++++ .idea/.idea.UnionPatcher/.idea/encodings.xml | 4 ++++ .idea/.idea.UnionPatcher/.idea/indexLayout.xml | 8 ++++++++ .idea/.idea.UnionPatcher/.idea/misc.xml | 6 ++++++ .idea/.idea.UnionPatcher/.idea/vcs.xml | 6 ++++++ UnionPatcher.sln | 16 ++++++++++++++++ UnionPatcher/Program.cs | 9 +++++++++ UnionPatcher/UnionPatcher.csproj | 8 ++++++++ global.json | 7 +++++++ 11 files changed, 89 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.idea.UnionPatcher/.idea/.gitignore create mode 100644 .idea/.idea.UnionPatcher/.idea/discord.xml create mode 100644 .idea/.idea.UnionPatcher/.idea/encodings.xml create mode 100644 .idea/.idea.UnionPatcher/.idea/indexLayout.xml create mode 100644 .idea/.idea.UnionPatcher/.idea/misc.xml create mode 100644 .idea/.idea.UnionPatcher/.idea/vcs.xml create mode 100644 UnionPatcher.sln create mode 100644 UnionPatcher/Program.cs create mode 100644 UnionPatcher/UnionPatcher.csproj create mode 100644 global.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/.idea/.idea.UnionPatcher/.idea/.gitignore b/.idea/.idea.UnionPatcher/.idea/.gitignore new file mode 100644 index 0000000..eab4b1f --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/.idea.UnionPatcher.iml +/contentModel.xml +/modules.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.UnionPatcher/.idea/discord.xml b/.idea/.idea.UnionPatcher/.idea/discord.xml new file mode 100644 index 0000000..30bab2a --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/discord.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.UnionPatcher/.idea/encodings.xml b/.idea/.idea.UnionPatcher/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.UnionPatcher/.idea/indexLayout.xml b/.idea/.idea.UnionPatcher/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.UnionPatcher/.idea/misc.xml b/.idea/.idea.UnionPatcher/.idea/misc.xml new file mode 100644 index 0000000..1d8c84d --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.UnionPatcher/.idea/vcs.xml b/.idea/.idea.UnionPatcher/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.UnionPatcher/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/UnionPatcher.sln b/UnionPatcher.sln new file mode 100644 index 0000000..00f6fff --- /dev/null +++ b/UnionPatcher.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnionPatcher", "UnionPatcher\UnionPatcher.csproj", "{235B4DEC-11A0-42EF-9B8D-16529869ED1A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {235B4DEC-11A0-42EF-9B8D-16529869ED1A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/UnionPatcher/Program.cs b/UnionPatcher/Program.cs new file mode 100644 index 0000000..1c75bfe --- /dev/null +++ b/UnionPatcher/Program.cs @@ -0,0 +1,9 @@ +using System; + +namespace UnionPatcher { + public class Program { + public static void Main(string[] args) { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file diff --git a/UnionPatcher/UnionPatcher.csproj b/UnionPatcher/UnionPatcher.csproj new file mode 100644 index 0000000..9590466 --- /dev/null +++ b/UnionPatcher/UnionPatcher.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + + diff --git a/global.json b/global.json new file mode 100644 index 0000000..4db6a48 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "5.0", + "rollForward": "latestMajor", + "allowPrerelease": false + } +} \ No newline at end of file