Skip to content

Commit

Permalink
Bump .NET SDK from 6.x to 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin-Credible committed Jan 12, 2025
1 parent e1661d1 commit d364bac
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 8.0.111
- name: Install dependencies (z80)
run: dotnet restore z80
- name: Install dependencies (z80.tests)
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build emulator.cli",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/emulator.cli/bin/Debug/net6.0/emulator.cli.dll",
"program": "${workspaceFolder}/emulator.cli/bin/Debug/net8.0/emulator.cli.dll",
"args": [
"run",
"${workspaceFolder}/roms/pacman",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ The project layout is as follows:
| `disassembler` | `netstandard2.0` | Used for disassembling code in the debugger |
| `assembler` | N/A | Z80 assembler ([zasm](https://k1.spdns.de/Develop/Projects/zasm/Distributions/)); used to assemble unit tests cases written in Z80 assembly |
| `z80` | `netstandard2.0` | Z80 CPU emulator |
| `z80.tests` | `net6.0` | Unit tests for the `z80` library project |
| `z80.tests` | `net8.0` | Unit tests for the `z80` library project |
| `emulator` | `netstandard2.0` | The emulation code and Pac-Man hardware (minus the CPU core), platform "glue" code (SDL) |
| `emulator.cli` | `net6.0` | CLI application; used to launch the app on a desktop platform (Windows/Linux/macOS) |
| `emulator.cli` | `net8.0` | CLI application; used to launch the app on a desktop platform (Windows/Linux/macOS) |
| `emulator.uwp` | `UAP` | Universal Windows application for Xbox One (or Windows 10) |
| `emulator.tests` | `net6.0` | Unit tests for the `emulator` library project |
| `emulator.tests` | `net8.0` | Unit tests for the `emulator` library project |

### Windows/Linux/macOS Desktop App

Expand Down
2 changes: 1 addition & 1 deletion emulator.cli/emulator.cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>JustinCredible.PacEmu.CLI</RootNamespace>
<Version>1.0.0</Version>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion emulator.tests/emulator.tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>JustinCredible.PacEmu.Tests</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion z80.tests/z80.tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>JustinCredible.ZilogZ80.Tests</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit d364bac

Please sign in to comment.