Skip to content

build vs publish -- can they be friends? #26247

Open
@richlander

Description

@richlander

build vs publish -- can they be friends?

build and publish are the two key verbs at the base of the .NET build system. The former is for raw builds during development ("inner loop") and the latter is for producing polished builds that are ready to deploy to production. At least, that's the theory. I previously thought that this approach was flawed and have come to the conclusion that it is good.

Dissenting opinion

My basic premise has been the following:

  • .NET Framework and other development platforms only offer Debug and Release as the Configuration pivot points and don't seem to require publish as yet another dimension.
  • dotnet publish defaults to -c Debug. That doesn't make much sense for production builds.
  • publish can kinda-sorta-or-actually break if it is different in some dimension than build or restore.
  • There isn't a good split between build and publish functionality. Some publish functionality should be available via build as an option.
  • Instead dotnet build -c Release could replace publish.

That remains a fair point-of-view on build vs publish.

I've written a fair bit to try and convince my colleagues that we should abandon the current scheme and instead focus on just build. Most of it has remained unpublished. In any case, I've been unsuccessful changing anyone's mind.

The value of publish

More recently, I've been working on improving the publish experience.

That process has demonstrated four key points to me:

  • MSBuild tasks are a stronger pivot point than Configuration.
  • Configuration is probably best left completely within the user domain, allowing customization beyond just Debug and Release.
  • We've invested a lot into these Publish* properties and they provide a pretty good experience, particularly with the improvements coming with .NET 7.
  • It would be an enormous effort (on the part of multiple parties) to change all of this, and without commensurate benefit.

There are certainly improvements that we can still make across build and publish. Model-wise, I think we've got a pretty good system.

Apparently,build and publish can be friends.

@baronfel @rainersigwald

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions