Skip to content

Remove redundant dotnet build step from build workflow#23

Merged
gerhardol merged 2 commits intofeature/ge7from
copilot/sub-pr-21
Mar 8, 2026
Merged

Remove redundant dotnet build step from build workflow#23
gerhardol merged 2 commits intofeature/ge7from
copilot/sub-pr-21

Conversation

Copy link
Copy Markdown

Copilot AI commented Mar 8, 2026

dotnet publish implicitly builds the project, making the preceding dotnet build step redundant.

Changes

  • Removed dotnet build from the workflow step
  • Renamed step from "Build & package with dotnet" to "Publish with dotnet"

Before:

- name: Build & package with `dotnet`
  run: |
    dotnet build -c Release --verbosity q --nologo
    dotnet publish --configuration Release --verbosity q --nologo

After:

- name: Publish with `dotnet`
  run: dotnet publish --configuration Release --verbosity q --nologo

💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: RussKie <4403806+RussKie@users.noreply.github.com>
Copilot AI changed the title [WIP] Address feedback on necessity of dotnet build vs dotnet publish Remove redundant dotnet build step from build workflow Mar 8, 2026
@gerhardol gerhardol marked this pull request as ready for review March 8, 2026 11:56
@gerhardol gerhardol merged commit d02de7d into feature/ge7 Mar 8, 2026
4 checks passed
@gerhardol gerhardol deleted the copilot/sub-pr-21 branch March 8, 2026 18:02
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