Skip to content

Commit 8af0f53

Browse files
committed
Update for .NET 8 and MonoGame 3.8.2.1105
1 parent c6dd54e commit 8af0f53

File tree

20 files changed

+68
-70
lines changed

20 files changed

+68
-70
lines changed

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<NeutralLanguage>en</NeutralLanguage>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222
<Nullable>enable</Nullable>
23-
<Version>6.0.6</Version>
23+
<Version>6.0.7</Version>
2424
</PropertyGroup>
2525

2626
<!-- Setup Code Analysis using the .editorconfig file -->

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
A Cross Platform C# Library That Adds Support For Aseprite Files in MonoGame Projects.
55

66
[![build-and-test](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/main.yml/badge.svg)](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/main.yml)
7-
[![NuGet 6.0.6](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/6.0.6)
7+
[![NuGet 6.0.7](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/6.0.7)
88
[![License: MIT](https://img.shields.io/badge/📃%20license-MIT-blue?style=flat)](LICENSE)
99
[![Twitter](https://img.shields.io/badge/%20-Share%20On%20Twitter-555?style=flat&logo=twitter)](https://twitter.com/intent/tweet?text=MonoGame.Aseprite%20by%20%40aristurtledev%0A%0AA%20cross-platform%20C%23%20library%20that%20adds%20support%20for%20Aseprite%20files%20in%20MonoGame%20projects.%20https%3A%2F%2Fgit.1-hub.cn%2FAristurtleDev%2Fmonogame-aseprite%0A%0A%23monogame%20%23aseprite%20%23dotnet%20%23csharp%20%23oss%0A)
1010

@@ -29,7 +29,7 @@ A Cross Platform C# Library That Adds Support For Aseprite Files in MonoGame Pro
2929
# Installation
3030
Install via NuGet
3131
```
32-
dotnet add package MonoGame.Aseprite --version 6.0.6
32+
dotnet add package MonoGame.Aseprite --version 6.0.7
3333
```
3434

3535
# Usage

examples/AnimatedTilemapExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/AnimatedTilemapExample/AnimatedTilemapExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="townmap.aseprite">

examples/ContentPipelineExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/ContentPipelineExample/Content/Content.mgcb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#-------------------------------- References --------------------------------#
1212

13-
/reference:..\..\..\.artifacts\bin\source\MonoGame.Aseprite.Content.Pipeline\Debug\net6.0\MonoGame.Aseprite.Content.Pipeline.dll
13+
/reference:..\..\..\.artifacts\bin\source\MonoGame.Aseprite.Content.Pipeline\Debug\net8.0\MonoGame.Aseprite.Content.Pipeline.dll
1414

1515
#---------------------------------- Content ---------------------------------#
1616

examples/ContentPipelineExample/ContentPipelineExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="Content\character_robot.aseprite">

examples/SpriteExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/SpriteExample/SpriteExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="character_robot.aseprite">

examples/SpritesheetExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/SpritesheetExample/SpritesheetExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="character_robot.aseprite">

examples/TextureAtlasExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/TextureAtlasExample/TextureAtlasExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="character_robot.aseprite">

examples/TilemapExample/.config/dotnet-tools.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-mgcb": {
6-
"version": "3.8.1.303",
6+
"version": "3.8.2.1105",
77
"commands": [
88
"mgcb"
99
]
1010
},
1111
"dotnet-mgcb-editor": {
12-
"version": "3.8.1.303",
12+
"version": "3.8.2.1105",
1313
"commands": [
1414
"mgcb-editor"
1515
]
1616
},
1717
"dotnet-mgcb-editor-linux": {
18-
"version": "3.8.1.303",
18+
"version": "3.8.2.1105",
1919
"commands": [
2020
"mgcb-editor-linux"
2121
]
2222
},
2323
"dotnet-mgcb-editor-windows": {
24-
"version": "3.8.1.303",
24+
"version": "3.8.2.1105",
2525
"commands": [
2626
"mgcb-editor-windows"
2727
]
2828
},
2929
"dotnet-mgcb-editor-mac": {
30-
"version": "3.8.1.303",
30+
"version": "3.8.2.1105",
3131
"commands": [
3232
"mgcb-editor-mac"
3333
]

examples/TilemapExample/TilemapExample.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<RollForward>Major</RollForward>
66
<PublishReadyToRun>false</PublishReadyToRun>
77
<TieredCompilation>false</TieredCompilation>
@@ -19,8 +19,8 @@
1919
<EmbeddedResource Include="Icon.bmp" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
23-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
22+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
23+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<None Update="townmap.aseprite">

0 commit comments

Comments
 (0)