From f4a08e3d2b2c80a5a1783abe5a5ca6f21433d6ec Mon Sep 17 00:00:00 2001 From: Justin Unterreiner Date: Sun, 12 Jan 2025 01:15:57 -0800 Subject: [PATCH] Bump .NET SDK from 6.x to 8.x --- README.md | 6 +++--- emulator.cli/emulator.cli.csproj | 2 +- emulator.tests/emulator.tests.csproj | 2 +- z80.tests/z80.tests.csproj | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 003dbff..999ae07 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/emulator.cli/emulator.cli.csproj b/emulator.cli/emulator.cli.csproj index 6a9bf28..6fd1fe5 100644 --- a/emulator.cli/emulator.cli.csproj +++ b/emulator.cli/emulator.cli.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 JustinCredible.PacEmu.CLI 1.0.0 diff --git a/emulator.tests/emulator.tests.csproj b/emulator.tests/emulator.tests.csproj index 1ba9ee0..2d2b093 100644 --- a/emulator.tests/emulator.tests.csproj +++ b/emulator.tests/emulator.tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 JustinCredible.PacEmu.Tests false diff --git a/z80.tests/z80.tests.csproj b/z80.tests/z80.tests.csproj index fe502b3..93220ba 100644 --- a/z80.tests/z80.tests.csproj +++ b/z80.tests/z80.tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 JustinCredible.ZilogZ80.Tests false