Skip to content

Commit 5b5f5ed

Browse files
authored
Upgrade to MonoGame 3.8.2 (#61)
1 parent 8121e76 commit 5b5f5ed

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/dotnet.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: windows-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
lfs: true
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v2
2020
with:
21-
dotnet-version: 6.0.x
21+
dotnet-version: 8.0.x
2222
- name: Restore dependencies
2323
run: dotnet restore
2424
- name: Build

TGC.MonoGame.TP.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.3.32819.101
4+
VisualStudioVersion = 17.5.2.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TGC.MonoGame.TP", "TGC.MonoGame.TP\TGC.MonoGame.TP.csproj", "{B72B2451-88F2-4BFA-A3CB-4A45C96B3F78}"
77
EndProject

TGC.MonoGame.TP/.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
]

TGC.MonoGame.TP/TGC.MonoGame.TP.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>
@@ -27,8 +27,8 @@
2727
</ItemGroup>
2828
<ItemGroup>
2929
<PackageReference Include="BepuPhysics" Version="2.4.0" />
30-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
31-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
30+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.2.1105" />
31+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.2.1105" />
3232
</ItemGroup>
3333
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
3434
<Message Text="Restoring dotnet tools" Importance="High" />

0 commit comments

Comments
 (0)