You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Turn off trailing whitespace triming in strings (#10646) (PR: [#10646](https://github.com/dotnet/razor/pull/10646))
@@ -24,7 +36,7 @@
24
36
* Bump xamltools to 17.12.35223.16 (PR: [#7464](https://github.com/dotnet/vscode-csharp/pull/7464))
25
37
* Added XAML Hot Reload support for x:FactoryMethod and x:Arguments
26
38
27
-
# 2.44.x
39
+
# 2.44.19
28
40
* Bump Roslyn to 4.12.0-2.24416.3 (PR: [#7448](https://github.com/dotnet/vscode-csharp/pull/7448))
29
41
* Use EnableCodeStyleSeverity instead of AnalysisLevel to control new diagnostic severity behavior (PR: [#73843](https://github.com/dotnet/roslyn/pull/73843))
* Fix completion handler bug that causes language server to crash (#7401) (PR: [#7406](https://github.com/dotnet/vscode-csharp/pull/7406))
53
65
54
-
# 2.41.x
66
+
# 2.41.26
55
67
* Bump Roslyn to 4.12.0-1.24376.3 (PR: [#7393](https://github.com/dotnet/vscode-csharp/pull/7393))
56
68
* Fix race condition in LSP FindAllReferences when linked files were involved.(PR: [#74566](https://github.com/dotnet/roslyn/pull/74566))
57
69
* Fix dll load issue when loading Razor projects in VSCode (PR: [#74570](https://github.com/dotnet/roslyn/pull/74570))
@@ -78,7 +90,7 @@
78
90
*`dotnet.implementType.insertionBehavior` to `dotnet.typeMembers.memberInsertionLocation`
79
91
*`dotnet.implementType.propertyGenerationBehavior` to `dotnet.typeMembers.propertyGenerationBehavior`
80
92
81
-
# 2.39.x
93
+
# 2.39.29
82
94
* Add language status bar item displaying project context for open files (PR: [#7321](https://github.com/dotnet/vscode-csharp/pull/7321), PR: [#7333](https://github.com/dotnet/vscode-csharp/pull/7333))
83
95
* Add language status bar item for workspace status (C# standalone) (PR: [#7254](https://github.com/dotnet/vscode-csharp/pull/7254), PR: [#7329])https://github.com/dotnet/vscode-csharp/pull/7329))
84
96
* Update Razor to 9.0.0-preview.24365.1 (PR: [#7354](https://github.com/dotnet/vscode-csharp/pull/7354))
* Note - Building with higher major versions of Node.js is not advised - it may work but we do not test it.
27
27
* Npm (The version shipped with node is fine)
28
28
* .NET 8.0 SDK (dotnet should be on your path)
@@ -141,6 +141,11 @@ Or, in VSCode settings (`Ctrl+,`):
141
141
3. Enable `razor.languageServer.debug`.
142
142
4. Set `razor.server.trace` to `Debug`. This gives you more detailed log messages in the output window.
143
143
144
+
### Updating NPM packages
145
+
We use the .NET eng AzDo artifacts feed https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet-public-npm/npm/registry/ with upstreams to the public npm registry.
146
+
Auth is required in order to pull new packages from the upstream. This can be done by running `vsts-npm-auth -config .npmrc`.
147
+
If you need to renew authorization, you can force it via `vsts-npm-auth -config .npmrc -F`
148
+
144
149
## Creating VSIX Packages for the Extension
145
150
146
151
To package this extension, we need to create VSIX Packages. The VSIX packages can be created using the gulp command `gulp vsix:release:package`. This will create all the platform specific VSIXs that you can then install manually in VSCode.
Copy file name to clipboardExpand all lines: azure-pipelines/release.yml
+50-51Lines changed: 50 additions & 51 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@ parameters:
7
7
default: true
8
8
9
9
variables:
10
-
# This is expected to provide VisualStudioMarketplacePAT to the release (https://code.visualstudio.com/api/working-with-extensions/publishing-extension#get-a-personal-access-token)
0 commit comments