Skip to content

Releases: Phault/proto-dotnet-plugin

v0.3.0

16 Mar 17:19
Compare
Choose a tag to compare
  • Support .NET v1.x
  • Support SDK uninstallation*
  • Detect SDK versions installed through other means
  • Fix SDK pre-releases not being installable

* This is currently limited to the SDK itself, not any associated runtimes or workloads.

v0.2.2

02 Mar 13:23
Compare
Choose a tag to compare
  • Officially support proto 0.31.0
  • Updated dependencies

v0.2.1

18 Feb 12:44
Compare
Choose a tag to compare
  • Fix latestPatch in global.json not working

v0.2.0

14 Feb 19:13
Compare
Choose a tag to compare

Install natively using dotnet-install scripts

Having an installation for each .NET SDK version causes all sorts of
issues, as the whole ecosystem expects all SDKs and runtimes to share
the same installation directory.

In practice this is currently causing issues because DOTNET_ROOT cannot
be set to anything meaningful on a system-level. Other tooling like
IntelliJ Rider can thus not find the correct SDK to use. You'd have to
somehow set DOTNET_ROOT per project, and even then that project can only
be aware of a single SDK version at a time.

So I've decided to rely on proto's native_install feature instead,
which opens another can of worms, but a more manageable one at least.
It relies on the official dotnet-install scripts to install SDKs into
whatever DOTNET_ROOT is set to (or ~/.dotnet per default).
Supporting uninstallation will come later, as it will be a bit tricky,
now that everything lives in the same directory.

The dotnet executable will no longer be shimmed nor symlinked, and the
user is expected to add DOTNET_ROOT to their PATH.

v0.1.0

06 Feb 17:35
Compare
Choose a tag to compare

global.json detection

The plugin will now try to respect any global.json it finds,
but it is done in a best effort manner.

proto will always prefer the highest version you allow it, so the major, minor, feature and patch options for the rollForward field, will instead act like latestMajor, latestMinor, latestFeature and latestPatch respectively.

The allowPrerelease field is simply ignored. Due to limitations in proto, or rather it's supporting semver library, this would be troublesome to implement in a faithful way. You may still specify a prerelease in the version field however, but how this works together with rollForward hasn't been tested.

v0.0.1

04 Feb 14:50
Compare
Choose a tag to compare

🎉 Release

  • Initial release!