Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Updating to dotnet 6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jessefreeman committed Nov 11, 2021
1 parent 84d7d77 commit 7de78a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pixel-vision-8-release-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
echo "CURRENT=${my_array[0]:1}.$((${my_array[1]} - 1)).$((${my_array[2]}))" >> $GITHUB_ENV
echo "PREVIOUS=${my_array[0]:1}.$((${my_array[1]} - 2)).0" >> $GITHUB_ENV
# Setup dotnet v5.0.x
# Setup dotnet v6.0.x
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x

- name: Use Node.js
uses: actions/setup-node@v1
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "gulp-build",
"program": "${workspaceFolder}/App/bin/Debug/net5.0/SpaceStation8.dll",
"program": "${workspaceFolder}/App/bin/Debug/SpaceStation8.dll",
"args": ["Game"],
"cwd": "${workspaceFolder}/",
"console": "internalConsole",
Expand Down
6 changes: 0 additions & 6 deletions .vscode/settings.json

This file was deleted.

4 changes: 3 additions & 1 deletion App/SpaceStation8.CoreDesktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<DefineConstants>OPENGL;OPENAL;XNADESIGNPROVIDED;LINUX;DESKTOPGL;SUPPORTS_EFX;NETSTANDARD;STBSHARP_INTERNAL</DefineConstants>
<OutputType>winexe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<UseAppHost>true</UseAppHost>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<IsPackable>true</IsPackable>
Expand All @@ -12,6 +12,8 @@
<PublishTrimmed>true</PublishTrimmed>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 7de78a0

Please sign in to comment.