media and publishing settings
This commit is contained in:
parent
1ccfa023fa
commit
1995ebcbbb
10 changed files with 22 additions and 2 deletions
12
.config/dotnet-tools.json
Normal file
12
.config/dotnet-tools.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"isRoot": true,
|
||||||
|
"tools": {
|
||||||
|
"gamebundle": {
|
||||||
|
"version": "1.3.1",
|
||||||
|
"commands": [
|
||||||
|
"gamebundle"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -95,7 +95,9 @@ namespace GreatSpringGameJam {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
buttons.AddChild(new VerticalSpace(10));
|
buttons.AddChild(new VerticalSpace(10));
|
||||||
buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch"));
|
buttons.AddChild(new Button(Anchor.AutoLeft, new Vector2(245, 50), "View on itch") {
|
||||||
|
OnPressed = e => Process.Start(new ProcessStartInfo("https://ellpeck.itch.io/a-breath-of-spring-air") {UseShellExecute = true})
|
||||||
|
});
|
||||||
buttons.AddChild(new Button(Anchor.AutoInlineIgnoreOverflow, new Vector2(245, 50), "View source") {
|
buttons.AddChild(new Button(Anchor.AutoInlineIgnoreOverflow, new Vector2(245, 50), "View source") {
|
||||||
PositionOffset = new Vector2(10, 0),
|
PositionOffset = new Vector2(10, 0),
|
||||||
OnPressed = e => Process.Start(new ProcessStartInfo("https://git.ellpeck.de/Ellpeck/GreatSpringGameJam") {UseShellExecute = true})
|
OnPressed = e => Process.Start(new ProcessStartInfo("https://git.ellpeck.de/Ellpeck/GreatSpringGameJam") {UseShellExecute = true})
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<TargetFramework>net5.0</TargetFramework>
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
<PublishReadyToRun>false</PublishReadyToRun>
|
<PublishReadyToRun>false</PublishReadyToRun>
|
||||||
<TieredCompilation>false</TieredCompilation>
|
<TieredCompilation>false</TieredCompilation>
|
||||||
|
|
BIN
Media/Banner.png
Normal file
BIN
Media/Banner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
Media/Cover.png
Normal file
BIN
Media/Cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
Media/Overworld.png
Normal file
BIN
Media/Overworld.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
BIN
Media/SnowBlower.png
Normal file
BIN
Media/SnowBlower.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
Media/Title.png
Normal file
BIN
Media/Title.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
Media/WateringCan.png
Normal file
BIN
Media/WateringCan.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
6
Publish.bat
Normal file
6
Publish.bat
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
cd GreatSpringGameJam
|
||||||
|
dotnet gamebundle -wlm
|
||||||
|
|
||||||
|
butler push bin/Bundled/win ellpeck/a-breath-of-spring-air:win --fix-permissions
|
||||||
|
butler push bin/Bundled/linux ellpeck/a-breath-of-spring-air:linux --fix-permissions
|
||||||
|
butler push bin/Bundled/mac ellpeck/a-breath-of-spring-air:mac --fix-permissions
|
Loading…
Reference in a new issue