Skip to content

Fix .NET version: update all .NET 8 references to .NET 10#56

Merged
maximilien-noal merged 1 commit intomainfrom
copilot/update-github-page-and-readme
Apr 4, 2026
Merged

Fix .NET version: update all .NET 8 references to .NET 10#56
maximilien-noal merged 1 commit intomainfrom
copilot/update-github-page-and-readme

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 4, 2026

Description of Changes

Replace all stale .NET 8 references with .NET 10 across README.md and docs/index.html (GitHub Pages).

  • README.md: prerequisites SDK link/URL, Cross-Platform feature blurb, dotnet publish output path (net8.0net10.0)
  • docs/index.html: Cross-Platform goal card, Spice86 description, Key Features card, prerequisites SDK link/URL, dotnet publish output path, Contributing setup step

Rationale behind Changes

The project targets net10.0 (per Cryogenic.csproj) but documentation consistently cited .NET 8, creating confusion for new contributors and users trying to follow the build/run instructions.

Suggested Testing Steps

Visually verify the GitHub Pages site and README reflect .NET 10 in all SDK references, download links, and publish paths.

@maximilien-noal maximilien-noal marked this pull request as ready for review April 4, 2026 09:30
Copilot AI review requested due to automatic review settings April 4, 2026 09:30
@maximilien-noal maximilien-noal merged commit a388cb4 into main Apr 4, 2026
1 check passed
@maximilien-noal maximilien-noal deleted the copilot/update-github-page-and-readme branch April 4, 2026 09:30
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates project documentation to consistently reference the repo’s current target framework (.NET 10 / net10.0), reducing confusion when following build/run instructions.

Changes:

  • Update README’s .NET SDK prerequisite, cross-platform blurb, and publish output path from .NET 8 → .NET 10.
  • Update GitHub Pages site (docs/index.html) to replace .NET 8 references (feature cards, prerequisites link, publish output path, contributing step) with .NET 10.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
README.md Replaces .NET 8 mentions with .NET 10, including the publish output path example.
docs/index.html Replaces .NET 8 mentions with .NET 10 across the project website content and build instructions.

@@ -157,7 +157,7 @@ For the full experience with AdLib music and PCM sound effects:
```bash
cd Cryogenic/src/Cryogenic
dotnet publish
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The command uses dotnet publish without specifying a configuration, but the next line assumes the Release output path (bin/Release/...). By default, dotnet publish outputs to bin/Debug/... unless -c Release is provided. Update either the command to include -c Release or adjust the example path to match the default output.

Suggested change
dotnet publish
dotnet publish -c Release

Copilot uses AI. Check for mistakes.
@@ -400,7 +400,7 @@ <h3 class="text-xl font-bold mb-4 text-spice">Running with Audio</h3>
<div class="code-block rounded p-4 text-sm overflow-x-auto">
<pre class="text-gray-300"><code>cd Cryogenic/src/Cryogenic
dotnet publish
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The snippet runs dotnet publish but the following line uses the bin/Release/... path. Unless -c Release is specified, dotnet publish will typically place output under bin/Debug/.... Please align the command and the documented output path (add -c Release or update the path).

Suggested change
dotnet publish
dotnet publish -c Release

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants