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 f4a08e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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 f4a08e3

Please sign in to comment.