forked from dotnet/vscode-csharp
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
390 changed files
with
35,545 additions
and
4,489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ out | |
.debugger/ | ||
.razor/ | ||
.razoromnisharp/ | ||
.razortelemetry/ | ||
.vscode-test/ | ||
dist/ | ||
*.razor.json | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Support | ||
|
||
## How to file issues and get help | ||
|
||
This project uses GitHub Issues to track bugs and feature requests. Please search the [existing issues](https://github.com/dotnet/vscode-csharp/issues) before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue. | ||
|
||
For help and questions about using this project, please see the [README](https://github.com/dotnet/vscode-csharp/blob/main/README.md). | ||
|
||
## Microsoft Support Policy | ||
|
||
Support for this project is limited to the resources listed above. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,63 @@ | ||
parameters: | ||
- name: prereleaseFlag | ||
- name: versionNumberOverride | ||
type: string | ||
default: 'default' | ||
|
||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: true | ||
fetchTags: false | ||
fetchDepth: 0 | ||
stages: | ||
- stage: Build | ||
displayName: 'Build VSIXs' | ||
jobs: | ||
- job: | ||
displayName: 'Build Prerelease VSIXs' | ||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: true | ||
fetchTags: false | ||
fetchDepth: 0 | ||
|
||
- template: prereqs.yml | ||
- template: prereqs.yml | ||
parameters: | ||
versionNumberOverride: ${{ parameters.versionNumberOverride }} | ||
|
||
- script: gulp 'vsix:release:package' ${{ parameters.prereleaseFlag }} | ||
displayName: 'Build VSIXs' | ||
- script: gulp 'vsix:release:package' --prerelease | ||
displayName: 'Build VSIXs' | ||
|
||
- task: PublishPipelineArtifact@1 | ||
# Run the publish step so we have vsix's even if the tests fail. | ||
condition: succeededOrFailed() | ||
displayName: 'Publish VSIXs' | ||
inputs: | ||
targetPath: '$(Build.SourcesDirectory)/vsix' | ||
artifactName: 'VSIX_Prerelease_$(System.JobAttempt)' | ||
|
||
- script: npm run omnisharptest:artifacts | ||
displayName: 'Run artifacts tests' | ||
|
||
- job: | ||
displayName: 'Build Release VSIXs' | ||
steps: | ||
- checkout: self | ||
clean: true | ||
submodules: true | ||
fetchTags: false | ||
fetchDepth: 0 | ||
|
||
- template: prereqs.yml | ||
parameters: | ||
versionNumberOverride: ${{ parameters.versionNumberOverride }} | ||
|
||
- script: gulp 'vsix:release:package' | ||
displayName: 'Build VSIXs' | ||
|
||
- task: PublishPipelineArtifact@1 | ||
# Run the publish step so we have vsix's even if the tests fail. | ||
condition: succeededOrFailed() | ||
displayName: 'Publish VSIXs' | ||
inputs: | ||
targetPath: '$(Build.SourcesDirectory)/vsix' | ||
artifactName: 'VSIXs - Attempt $(System.JobAttempt)' | ||
- task: PublishPipelineArtifact@1 | ||
# Run the publish step so we have vsix's even if the tests fail. | ||
condition: succeededOrFailed() | ||
displayName: 'Publish VSIXs' | ||
inputs: | ||
targetPath: '$(Build.SourcesDirectory)/vsix' | ||
artifactName: 'VSIX_Release_$(System.JobAttempt)' | ||
|
||
- script: npm run omnisharptest:artifacts | ||
displayName: 'Run artifacts tests' | ||
- script: npm run omnisharptest:artifacts | ||
displayName: 'Run artifacts tests' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
steps: | ||
|
||
- script: npm run vscode:prepublish | ||
displayName: 'Prepublish VSIXs' | ||
|
||
# We need to download the roslyn language server for the current platform to run integration tests against it. | ||
- script: gulp installDependencies | ||
displayName: 'Install Roslyn Language Server' | ||
|
||
- script: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | ||
displayName: 'Activate screen emulation' | ||
condition: eq(variables['Agent.OS'], 'Linux') |
Oops, something went wrong.