Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pipeline-templates/package-vsix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- bash: |
npm i -g rimraf
npm i -g @vscode/vsce
vsce package -o $(package-name)-$(GetVersion.version).vsix --ignoreFile ../.vscodeignore --yarn --pre-release
vsce package -o $(package-name)-$(GetVersion.version).vsix --ignoreFile ../.vscodeignore --yarn
cp $(package-name)-$(GetVersion.version).vsix ../packages/$(package-name)-$(GetVersion.version).vsix
displayName: 📦 Package Artifact
workingDirectory: $(dir-name)
Expand Down
2 changes: 1 addition & 1 deletion sample/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2313,7 +2313,7 @@ uuid@^8.3.0:
fsevents "^2.3.3"

"vscode-dotnet-runtime@file:../vscode-dotnet-runtime-extension":
version "2.3.4"
version "2.3.5"
resolved "file:../vscode-dotnet-runtime-extension"
dependencies:
"@types/chai-as-promised" "^7.1.8"
Expand Down
25 changes: 15 additions & 10 deletions vscode-dotnet-runtime-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,21 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [2.3.4] - 2025-5-5

RHEL now uses dnf over yum.
Caching is utilized more often for checking the status of dotnet.
Changes to reliability where existing installations can be reused.
Performance improvements by removing deprecated logic or simplifying logic.
Uninstall no longer allows uninstallation when dotnet is in use.
Clean up corrupt save data from very old versions of this extension.
Adds a hidden command 'resetData' you can enable visiblity of to clear extension data.
Uninstall logic is rewritten and improved.
## [2.3.5] - 2025-5-5

- Changes in the pre-release 2.3.4 version are now applied to a release version.
- Performance and reliability improvements.

## [2.3.4] - 2025-5-7 (Pre-release)

- RHEL now uses dnf over yum.
- Caching is utilized more often for checking the status of dotnet.
- Changes to reliability where existing installations can be reused.
- Performance improvements by removing deprecated logic or simplifying logic.
- Uninstall no longer allows uninstallation when dotnet is in use.
- Clean up corrupt save data from very old versions of this extension.
- Adds a hidden command 'resetData' you can enable visiblity of to clear extension data.
- Uninstall logic is rewritten and improved.

## [2.3.3] - 2025-4-15

Expand Down
6 changes: 3 additions & 3 deletions vscode-dotnet-runtime-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode-dotnet-runtime-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"description": "This extension installs and manages different versions of the .NET SDK and Runtime.",
"connectionString": "InstrumentationKey=02dc18e0-7494-43b2-b2a3-18ada5fcb522;IngestionEndpoint=https://westus2-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus2.livediagnostics.monitor.azure.com/;ApplicationId=e8e56970-a18a-4101-b7d1-1c5dd7c29eeb",
"icon": "images/dotnetIcon.png",
"version": "2.3.4",
"version": "2.3.5",
"publisher": "ms-dotnettools",
"engines": {
"vscode": "^1.99.0"
Expand Down
Loading