Skip to content

Commit d913122

Browse files
authored
[automated] Merge branch 'main' => 'prerelease' (#8037)
2 parents 1cacd06 + 63fd896 commit d913122

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1476
-1136
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ module.exports = {
5858
"out/",
5959
"dist/",
6060
"wallaby.js",
61-
"webpack.config.js",
6261
".eslintrc.js",
62+
"esbuild.js",
6363
"**/*.d.ts"
6464
],
6565
};

.github/ISSUE_TEMPLATE/bug_report.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ If the `CSharp: Report an issue` command doesn't appear, make sure that you have
2020
VS Code version:
2121
C# Extension version:
2222

23-
## OmniSharp log
23+
## C# logs
24+
C# output window contents:
2425

26+
See [this page](https://github.com/dotnet/vscode-csharp/blob/main/SUPPORT.md#collecting-general-logs) for collecting more detailed logs
2527

2628
## Steps to reproduce
2729

.github/workflows/backport.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Backport PR to branch
2+
on:
3+
issue_comment:
4+
types: [created]
5+
schedule:
6+
# once a day at 13:00 UTC to cleanup old runs
7+
- cron: '0 13 * * *'
8+
9+
permissions:
10+
contents: write
11+
issues: write
12+
pull-requests: write
13+
actions: write
14+
15+
jobs:
16+
backport:
17+
if: ${{ contains(github.event.comment.body, '/backport to') || github.event_name == 'schedule' }}
18+
uses: dotnet/arcade/.github/workflows/backport-base.yml@main
19+
with:
20+
pr_description_template: |
21+
Backport of #%source_pr_number% to %target_branch%
22+
23+
/cc %cc_users%
24+
25+
## Customer Impact
26+
27+
## Regression
28+
29+
- [ ] Yes
30+
- [ ] No
31+
32+
[If yes, specify when the regression was introduced. Provide the PR or commit if known.]
33+
34+
## Testing
35+
36+
[How was the fix verified? How was the issue missed previously? What tests were added?]
37+
38+
## Risk
39+
40+
[High/Medium/Low. Justify the indication by mentioning how risks were measured and addressed.]

.vscode/launch.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
1010
"sourceMaps": true,
1111
"outFiles": ["${workspaceRoot}/dist/*.js"],
12-
"preLaunchTask": "buildDev"
12+
"preLaunchTask": "packageDev"
1313
},
1414
{
1515
"name": "[Roslyn] Run Current File Integration Tests",
@@ -35,7 +35,7 @@
3535
"sourceMaps": true,
3636
"outFiles": ["${workspaceRoot}/dist/*.js", "${workspaceRoot}/out/test/**/*.js"],
3737
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
38-
"preLaunchTask": "buildDev",
38+
"preLaunchTask": "packageDev",
3939
"internalConsoleOptions": "openOnSessionStart"
4040
},
4141
{
@@ -62,7 +62,7 @@
6262
"sourceMaps": true,
6363
"outFiles": ["${workspaceRoot}/dist/*.js", "${workspaceRoot}/out/test/**/*.js"],
6464
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
65-
"preLaunchTask": "buildDev",
65+
"preLaunchTask": "packageDev",
6666
"internalConsoleOptions": "openOnSessionStart"
6767
},
6868
{
@@ -89,7 +89,7 @@
8989
"sourceMaps": true,
9090
"outFiles": ["${workspaceRoot}/dist/*.js", "${workspaceRoot}/out/test/**/*.js"],
9191
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
92-
"preLaunchTask": "buildTest",
92+
"preLaunchTask": "packageDev",
9393
"internalConsoleOptions": "openOnSessionStart"
9494
},
9595
{
@@ -115,7 +115,7 @@
115115
"sourceMaps": true,
116116
"outFiles": ["${workspaceRoot}/dist/*.js", "${workspaceRoot}/out/test/**/*.js"],
117117
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
118-
"preLaunchTask": "buildTest"
118+
"preLaunchTask": "packageDev"
119119
},
120120
{
121121
"name": "[O# LSP] Run Current File Integration Tests",
@@ -140,7 +140,7 @@
140140
"sourceMaps": true,
141141
"outFiles": ["${workspaceRoot}/dist/*.js", "${workspaceRoot}/out/test/**/*.js"],
142142
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
143-
"preLaunchTask": "buildTest"
143+
"preLaunchTask": "packageDev"
144144
},
145145
{
146146
"type": "node",
@@ -195,7 +195,7 @@
195195
"name": "Razor integration tests",
196196
"preLaunchTask": "build",
197197
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
198-
"args": ["test:razorintegration"],
198+
"args": ["test:integration:razor"],
199199
"cwd": "${workspaceFolder}"
200200
}
201201
],

.vscode/tasks.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,20 @@
2828
}
2929
},
3030
{
31-
"label": "buildTest",
31+
"label": "package",
3232
"command": "npm",
3333
"type": "shell",
34-
"args": ["run", "compileTest"],
34+
"args": ["run", "package"],
35+
"group": {
36+
"kind": "build",
37+
"isDefault": true
38+
}
39+
},
40+
{
41+
"label": "packageDev",
42+
"command": "npm",
43+
"type": "shell",
44+
"args": ["run", "packageDev"],
3545
"group": {
3646
"kind": "build",
3747
"isDefault": true

.vscodeignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
!.razoromnisharp/**
1010
.rpt2_cache/**
1111
.config/**
12+
.devcontainer/**
1213
.github/**
1314
.vscode/**
1415
.vscode-test/**
@@ -51,8 +52,7 @@ package.json
5152
tsconfig.json
5253
version.json
5354
wallaby.js
54-
webpack.config.js
55-
55+
esbuild.js
5656
!src/razor/language-configuration.json
5757
!src/razor/syntaxes/*
5858

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
- Diagnostics related feature requests and improvements [#5951](https://github.com/dotnet/vscode-csharp/issues/5951)
44
- Debug from .csproj and .sln [#5876](https://github.com/dotnet/vscode-csharp/issues/5876)
55

6+
# 2.68.x
7+
* Update Razor to 9.0.0-preview.25125.9 (PR: [#8027](https://github.com/dotnet/vscode-csharp/pull/8027))
8+
* Don't send invalid ranges for diagnostics if they do not map (#11555) (PR: [#11555](https://github.com/dotnet/razor/pull/11555))
9+
* Fix file path service, and integration tests (#11556) (PR: [#11556](https://github.com/dotnet/razor/pull/11556))
10+
* Add ParserOptions and CodeGenerationOptions properties to RazorCodeDocument and rationalize options configuration (#11526) (PR: [#11526](https://github.com/dotnet/razor/pull/11526))
11+
* Fix parsing of quotes in attribute names (#11543) (PR: [#11543](https://github.com/dotnet/razor/pull/11543))
12+
* Bump xamlTools to 17.14.35828.13 (PR: [#8032](https://github.com/dotnet/vscode-csharp/pull/8032))
13+
614
# 2.67.x
715
* Update Razor to 9.0.0-preview.25125.9 (PR: [#8027](https://github.com/dotnet/vscode-csharp/pull/8027))
816
* Don't send invalid ranges for diagnostics if they do not map (#11555) (PR: [#11555](https://github.com/dotnet/razor/pull/11555))

CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Follow these steps to build, run, and test the repository:
3636
#### Building
3737

3838
1. Run `npm install -g vsts-npm-auth`, then run `vsts-npm-auth -config .npmrc` - This command will configure your credentials for the next command.
39+
a. If you have already authenticated before, but the token expired, you may need to run `vsts-npm-auth -config .npmrc -f` instead.
3940
2. Run `npm i` - This command installs the project dependencies.
4041
3. Run `npm i -g gulp` - This command installs Gulp globally.
4142
4. Run `gulp installDependencies` - This command downloads the various dependencies as specified by the version in the [package.json](package.json) file.
@@ -51,7 +52,8 @@ After completing the build steps:
5152

5253
#### Testing
5354

54-
To run all tests, execute `npm run test`.
55+
To run all unit tests, execute `npm run test:unit`.
56+
To run all integration tests execute `npm run test:integration`
5557

5658
To debug unit tests locally, press <kbd>F5</kbd> in VS Code with the "Launch Tests" debug configuration selected.
5759

azure-pipelines/prereqs.yml

-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,3 @@ steps:
4040
npm ci
4141
npm i -g gulp
4242
displayName: 'Install dependencies'
43-
44-
- script: npm run compile
45-
displayName: 'Compile'

azure-pipelines/profiling.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ extends:
5656
parameters:
5757
dotnetVersion: $(defaultDotnetVersion)
5858
npmCommand: profiling
59-
testVSCodeVersion: stable
59+
testVSCodeVersion: stable
60+
isIntegration: true

azure-pipelines/test-matrix.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,26 @@ jobs:
1616
- job:
1717
strategy:
1818
matrix:
19-
CSharpTests:
20-
npmCommand: test:withoutDevKit
19+
UnitTests:
20+
npmCommand: test:unit
21+
isIntegration: false
22+
CSharpIntegrationTests:
23+
npmCommand: test:integration:csharp
24+
isIntegration: true
2125
DevKitTests:
2226
npmCommand: test:integration:devkit
27+
isIntegration: true
28+
RazorTests:
29+
npmCommand: test:integration:razor
30+
isIntegration: true
2331
pool: ${{ parameters.pool }}
2432
${{ if parameters.containerName }}:
2533
container: ${{ parameters.containerName }}
2634
steps:
2735
- template: /azure-pipelines/test.yml@self
2836
parameters:
2937
dotnetVersion: ${{ parameters.dotnetVersion }}
30-
installAdditionalLinuxDependencies: true
38+
installAdditionalLinuxDependencies: ${{ parameters.installAdditionalLinuxDependencies }}
3139
npmCommand: $(npmCommand)
32-
testVSCodeVersion: ${{ parameters.testVSCodeVersion }}
40+
testVSCodeVersion: ${{ parameters.testVSCodeVersion }}
41+
isIntegration: $(isIntegration)

azure-pipelines/test-prereqs.yml

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
steps:
22

3-
- script: npm run vscode:prepublish
4-
displayName: 'Prepublish VSIXs'
5-
63
# We need to download the roslyn language server for the current platform to run integration tests against it.
74
- script: gulp installDependencies
85
displayName: 'Install Roslyn Language Server'

azure-pipelines/test.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ parameters:
88
type: string
99
- name: testVSCodeVersion
1010
type: string
11+
- name: isIntegration
12+
type: string
1113

1214
steps:
1315
- checkout: self
@@ -44,16 +46,28 @@ steps:
4446
mergeTestResults: true
4547
testRunTitle: $(System.StageDisplayName) $(Agent.JobName) (Attempt $(System.JobAttempt))
4648

49+
- powershell: |
50+
Write-Host "##vso[task.setvariable variable=isIntegrationVar;]${{ parameters.isIntegration }}"
51+
displayName: 'Set IsIntegration Variable'
52+
condition: succeededOrFailed()
53+
54+
- powershell: |
55+
$tempPath = [System.IO.Path]::GetTempPath()
56+
echo "Temp Path: $tempPath"
57+
Get-ChildItem -Path $tempPath -Filter *.cpuprofile | Copy-Item -Destination "$(Build.SourcesDirectory)/out/logs"
58+
displayName: 'Copy .cpuprofile files to out/logs'
59+
condition: eq(variables.isIntegrationVar, true)
60+
4761
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
4862
- task: 1ES.PublishPipelineArtifact@1
49-
condition: failed()
63+
condition: eq(variables.isIntegrationVar, true)
5064
displayName: 'Upload integration test logs'
5165
inputs:
5266
path: '$(Build.SourcesDirectory)/out/logs'
5367
artifact: 'Test Logs ($(System.StageDisplayName)-$(Agent.JobName)-$(System.JobAttempt))'
5468
- ${{ else }}:
5569
- task: PublishPipelineArtifact@1
56-
condition: failed()
70+
condition: eq(variables.isIntegrationVar, true)
5771
displayName: 'Upload integration test logs'
5872
inputs:
5973
targetPath: '$(Build.SourcesDirectory)/out/logs'

esbuild.js

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
const esbuild = require("esbuild");
2+
const fs = require('fs/promises');
3+
4+
const production = process.argv.includes('--production');
5+
const watch = process.argv.includes('--watch');
6+
7+
/**
8+
* @type {import('esbuild').Plugin}
9+
*/
10+
const esbuildProblemMatcherPlugin = {
11+
name: 'esbuild-problem-matcher',
12+
13+
setup(build) {
14+
build.onStart(() => {
15+
console.log('[watch] build started');
16+
});
17+
build.onEnd((result) => {
18+
result.errors.forEach(({ text, location }) => {
19+
console.error(`✘ [ERROR] ${text}`);
20+
console.error(` ${location.file}:${location.line}:${location.column}:`);
21+
});
22+
console.log('[watch] build finished');
23+
});
24+
},
25+
};
26+
27+
/**
28+
* Some VSCode libraries include UMD versions that are not esbuild compatible, and also have broken ESM packages.
29+
* This plugin replaces the UMD imports with the ESM imports.
30+
* See https://github.com/microsoft/vscode/issues/192144
31+
*/
32+
const umdEsmLoaderPlugin = {
33+
name: 'umdEsmLoaderPlugin',
34+
35+
setup(build) {
36+
build.onLoad({ filter: /(vscode-html-languageservice|jsonc-parser).*lib[\/\\]umd/ }, async (moduleArgs) => {
37+
// replace the umd path with the esm path from the package.
38+
const newPath = moduleArgs.path.replace(/(.*)lib([\/\\])umd(.*)/, '$1lib$2esm$3');
39+
const contents = await fs.readFile(newPath, 'utf8');
40+
return { contents: contents };
41+
});
42+
},
43+
};
44+
45+
async function main() {
46+
const ctx = await esbuild.context({
47+
entryPoints: [
48+
'src/main.ts'
49+
],
50+
bundle: true,
51+
format: 'cjs',
52+
minify: production,
53+
sourcemap: !production,
54+
sourcesContent: false,
55+
platform: 'node',
56+
outfile: 'dist/extension.js',
57+
external: ['vscode', 'applicationinsights-native-metrics', '@opentelemetry/tracing'],
58+
logLevel: 'info',
59+
plugins: [
60+
umdEsmLoaderPlugin,
61+
/* add to the end of plugins array */
62+
esbuildProblemMatcherPlugin,
63+
],
64+
});
65+
if (watch) {
66+
await ctx.watch();
67+
} else {
68+
await ctx.rebuild();
69+
await ctx.dispose();
70+
}
71+
}
72+
73+
main().catch(e => {
74+
console.error(e);
75+
process.exit(1);
76+
});

l10n/bundle.l10n.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2+
"How to setup Remote Debugging": "How to setup Remote Debugging",
3+
"The C# extension for Visual Studio Code is incompatible on {0} {1} with the VS Code Remote Extensions. To see avaliable workarounds, click on '{2}'.": "The C# extension for Visual Studio Code is incompatible on {0} {1} with the VS Code Remote Extensions. To see avaliable workarounds, click on '{2}'.",
4+
"The C# extension for Visual Studio Code is incompatible on {0} {1}.": "The C# extension for Visual Studio Code is incompatible on {0} {1}.",
25
"Update and reload": "Update and reload",
36
"The {0} extension requires at least {1} of the .NET Install Tool ({2}) extension. Please update to continue": "The {0} extension requires at least {1} of the .NET Install Tool ({2}) extension. Please update to continue",
47
"Version {0} of the .NET Install Tool ({1}) was not found, {2} will not activate.": "Version {0} of the .NET Install Tool ({1}) was not found, {2} will not activate.",
58
".NET Test Log": ".NET Test Log",
69
".NET NuGet Restore": ".NET NuGet Restore",
7-
"How to setup Remote Debugging": "How to setup Remote Debugging",
8-
"The C# extension for Visual Studio Code is incompatible on {0} {1} with the VS Code Remote Extensions. To see avaliable workarounds, click on '{2}'.": "The C# extension for Visual Studio Code is incompatible on {0} {1} with the VS Code Remote Extensions. To see avaliable workarounds, click on '{2}'.",
9-
"The C# extension for Visual Studio Code is incompatible on {0} {1}.": "The C# extension for Visual Studio Code is incompatible on {0} {1}.",
1010
"Cannot create .NET debug configurations. No workspace folder was selected.": "Cannot create .NET debug configurations. No workspace folder was selected.",
1111
"Cannot create .NET debug configurations. The server is still initializing or has exited unexpectedly.": "Cannot create .NET debug configurations. The server is still initializing or has exited unexpectedly.",
1212
"Cannot create .NET debug configurations. The active C# project is not within folder '{0}'.": "Cannot create .NET debug configurations. The active C# project is not within folder '{0}'.",

0 commit comments

Comments
 (0)