mirror of
https://github.com/Ellpeck/GameBundle.git
synced 2024-11-21 08:13:30 +01:00
start
This commit is contained in:
parent
890a2033db
commit
ccd9f5460c
7 changed files with 63 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
.idea
|
||||
bin
|
||||
obj
|
||||
packages
|
||||
*.user
|
16
GameBundle.sln
Normal file
16
GameBundle.sln
Normal file
|
@ -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
|
9
GameBundle/GameBundle.csproj
Normal file
9
GameBundle/GameBundle.csproj
Normal file
|
@ -0,0 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<NuspecFile>Contentless.nuspec</NuspecFile>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
20
GameBundle/GameBundle.nuspec
Normal file
20
GameBundle/GameBundle.nuspec
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package>
|
||||
<metadata>
|
||||
<id>GameBundle</id>
|
||||
<version>0.0.1</version>
|
||||
<authors>Ellpeck</authors>
|
||||
<description>A tool to package MonoGame and other .NET Core applications into several distributable formats</description>
|
||||
<tags>monogame mono xna netcore dotnet publish bundle tool library</tags>
|
||||
<projectUrl>https://github.com/Ellpeck/GameBundle</projectUrl>
|
||||
<licenseUrl>https://github.com/Ellpeck/GameBundle/blob/master/LICENSE</licenseUrl>
|
||||
<repository type="git" url="https://github.com/Ellpeck/GameBundle"/>
|
||||
<readme>README.md</readme>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="../README.md" target="README.md"/>
|
||||
<file src="_._" target="lib/netcoreapp3.1/"/>
|
||||
<file src="GameBundle.targets" target="build/GameBundle.targets"/>
|
||||
<file src="bin\Debug\netcoreapp3.1\**\*" target="tools/"/>
|
||||
</files>
|
||||
</package>
|
5
GameBundle/GameBundle.targets
Normal file
5
GameBundle/GameBundle.targets
Normal file
|
@ -0,0 +1,5 @@
|
|||
<Project>
|
||||
<Target Name="GameBundle" AfterTargets="AfterBuild">
|
||||
<Exec Command="$(MSBuildThisFileDirectory)/../tools/GameBundle.exe"/>
|
||||
</Target>
|
||||
</Project>
|
8
GameBundle/Program.cs
Normal file
8
GameBundle/Program.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace GameBundle {
|
||||
internal static class Program {
|
||||
|
||||
private static void Main(string[] args) {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
0
GameBundle/_._
Normal file
0
GameBundle/_._
Normal file
Loading…
Reference in a new issue