Upgrade to .NET 10 and add Codespaces/CI support#4
Merged
Conversation
Co-authored-by: simonech <61557+simonech@users.noreply.github.com>
Co-authored-by: simonech <61557+simonech@users.noreply.github.com>
Co-authored-by: simonech <61557+simonech@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Upgrade project to net10 and modem flow
Upgrade to .NET 10 and add Codespaces/CI support
Feb 19, 2026
simonech
approved these changes
Feb 19, 2026
There was a problem hiding this comment.
Pull request overview
This PR modernizes the VirtualSpeed project from .NET Framework 4.6 to .NET 10, converting it to a modern SDK-style project format and adding developer infrastructure for GitHub Codespaces and CI/CD. The changes significantly simplify the project structure while maintaining all existing functionality.
Changes:
- Converted project to SDK-style format targeting .NET 10, reducing project file from 64 to 16 lines
- Added GitHub Actions CI workflow with build and smoke test validation
- Added Codespaces support with pre-configured .NET development container
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| VirtualSpeed/VirtualSpeed/VirtualSpeed.csproj | Converted to modern SDK-style project format targeting net10.0 with simplified configuration |
| VirtualSpeed/VirtualSpeed/Properties/AssemblyInfo.cs | Removed obsolete assembly info file (not needed in SDK-style projects) |
| VirtualSpeed/VirtualSpeed/App.config | Removed obsolete configuration file (not needed in modern .NET) |
| .gitignore | Added pattern to ignore *_fixed.tcx output files generated by the application |
| .github/workflows/build.yml | Added CI pipeline that builds solution and runs smoke test to verify output file generation |
| .devcontainer/devcontainer.json | Added Codespaces configuration with .NET 10 container and C# development extensions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Modernizes the project from .NET Framework 4.6 to .NET 10 and adds developer infrastructure for GitHub Codespaces and automated builds.
Changes
Project upgrade
net10.0App.configandProperties/AssemblyInfo.cs(obsolete in modern .NET)Developer infrastructure
.devcontainer/devcontainer.json- Codespaces support with .NET 10 container, C# tooling, and GitHub CLI.github/workflows/build.yml- CI pipeline that builds and smoke-tests the application.gitignore- Added*_fixed.tcxpattern for output filesExample
Old project file (64 lines of XML):
New project file (16 lines):
No functional changes to application code.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.