mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
[PR #847] Add /no-restore and SelfContained property support in CLI #1322
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/ElectronNET/Electron.NET/pull/847
State: closed
Merged: Yes
/no-restoreIt's that MSBuild doesn't have property to control restore policies. These command are implemented in dotnet cli but not in MSBuild.
/no-restore option can be useful for flexlible control in CI\CD pipelines.
SelfContainedOptional --self-contained arg will be useful to reduce package size if the required .net runtime is expected to be installed.
The new options maintain backward compatibilty.