From ccd9f5460c963c7aab0f3f5baf8404f992f1a89d Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 9 Apr 2020 16:18:50 +0200 Subject: [PATCH] start --- .gitignore | 5 +++++ GameBundle.sln | 16 ++++++++++++++++ GameBundle/GameBundle.csproj | 9 +++++++++ GameBundle/GameBundle.nuspec | 20 ++++++++++++++++++++ GameBundle/GameBundle.targets | 5 +++++ GameBundle/Program.cs | 8 ++++++++ GameBundle/_._ | 0 7 files changed, 63 insertions(+) create mode 100644 .gitignore create mode 100644 GameBundle.sln create mode 100644 GameBundle/GameBundle.csproj create mode 100644 GameBundle/GameBundle.nuspec create mode 100644 GameBundle/GameBundle.targets create mode 100644 GameBundle/Program.cs create mode 100644 GameBundle/_._ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38b37f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.idea +bin +obj +packages +*.user \ No newline at end of file diff --git a/GameBundle.sln b/GameBundle.sln new file mode 100644 index 0000000..ef64607 --- /dev/null +++ b/GameBundle.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GameBundle", "GameBundle\GameBundle.csproj", "{18B83BC9-B35C-4E04-AA1C-85057CB2B6BB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {18B83BC9-B35C-4E04-AA1C-85057CB2B6BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {18B83BC9-B35C-4E04-AA1C-85057CB2B6BB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {18B83BC9-B35C-4E04-AA1C-85057CB2B6BB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {18B83BC9-B35C-4E04-AA1C-85057CB2B6BB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/GameBundle/GameBundle.csproj b/GameBundle/GameBundle.csproj new file mode 100644 index 0000000..ae39d8c --- /dev/null +++ b/GameBundle/GameBundle.csproj @@ -0,0 +1,9 @@ + + + + Exe + netcoreapp3.1 + Contentless.nuspec + + + diff --git a/GameBundle/GameBundle.nuspec b/GameBundle/GameBundle.nuspec new file mode 100644 index 0000000..00d032c --- /dev/null +++ b/GameBundle/GameBundle.nuspec @@ -0,0 +1,20 @@ + + + + GameBundle + 0.0.1 + Ellpeck + A tool to package MonoGame and other .NET Core applications into several distributable formats + monogame mono xna netcore dotnet publish bundle tool library + https://github.com/Ellpeck/GameBundle + https://github.com/Ellpeck/GameBundle/blob/master/LICENSE + + README.md + + + + + + + + \ No newline at end of file diff --git a/GameBundle/GameBundle.targets b/GameBundle/GameBundle.targets new file mode 100644 index 0000000..b4cc581 --- /dev/null +++ b/GameBundle/GameBundle.targets @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/GameBundle/Program.cs b/GameBundle/Program.cs new file mode 100644 index 0000000..f32375e --- /dev/null +++ b/GameBundle/Program.cs @@ -0,0 +1,8 @@ +namespace GameBundle { + internal static class Program { + + private static void Main(string[] args) { + } + + } +} \ No newline at end of file diff --git a/GameBundle/_._ b/GameBundle/_._ new file mode 100644 index 0000000..e69de29