v0.14.2: ARCH-2 SDK csproj alongside csc.exe build#40
Merged
Conversation
Adds Pixelpipe.csproj + Pixelpipe.Tests.csproj so dotnet build / dotnet test work, without removing the existing csc.exe-based build pipeline. Both produce equivalent outputs. - Pixelpipe.csproj: SDK Microsoft.NET.Sdk targeting net48, WinExe, /platform:x64, embeds app.manifest + assets/pixelpipe.ico. GenerateAssemblyInfo=false so scripts/generate-version.ps1 stays the single source of truth for the version stamp. - Pixelpipe.Tests.csproj: same pattern for tests/TestRunner.cs. dotnet run --project Pixelpipe.Tests.csproj -c Release runs all 53 tests. - scripts/build-release.ps1 + run-tests.ps1 remain the canonical CI path. The csproj is an alternative entry for developer ergonomics. 53/53 tests green via both build paths. FileVersion 0.14.2.0. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
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.
Summary
Audit ARCH-2. Adds an SDK-style csproj that produces an equivalent exe to the existing PowerShell build, so `dotnet build` / `dotnet test` / IDE integration / Roslyn analyzers all work without losing the CI build path.
Both build paths produce `Pixelpipe.exe` with FileVersion 0.14.2.0 and pass all 53 tests.
Test plan
🤖 Generated with Claude Code