Skip to content

Commit 08682dc

Browse files
authored
Updates to README, default branch and repo link (dotnet#5709)
* Fix typos in README * Change master to main
1 parent b3fe85c commit 08682dc

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: OmniSharp-VSCode CI
22

33
on:
44
push:
5-
branches: [ master, feature/** ]
5+
branches: [ main, feature/** ]
66

77
pull_request:
8-
branches: [ master, feature/** ]
8+
branches: [ main, feature/** ]
99

1010
jobs:
1111
build:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ The 1.8 release makes a major change to how the debugger works under the hood. T
11671167
Changes:
11681168

11691169
* The module load messages in the output window are now more detailed and hopefully less confusing. ([#837](https://github.com/OmniSharp/omnisharp-vscode/issues/837))
1170-
* Programs can now be launched into VS Code's integrated terminal. ([documentation](https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger.md#console-terminal-window))
1170+
* Programs can now be launched into VS Code's integrated terminal. ([documentation](https://github.com/dotnet/vscode-csharp/blob/main/debugger.md#console-terminal-window))
11711171
* VS Code recently introduced [column breakpoint support](https://code.visualstudio.com/updates/v1_10#_column-breakpoints) and they are now enabled for C#.
11721172
* React to the VS Code change to use `${command:` instead of `${command.`. ([#1275](https://github.com/OmniSharp/omnisharp-vscode/issues/1275))
11731173
* Fix a problem with browser launch support that could lead to debugger session's being aborted when the browser is started. ([#1274](https://github.com/OmniSharp/omnisharp-vscode/issues/1274))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## C# for Visual Studio Code
22

3-
C# is the feature-rich, language support for C# in VS Code. This extension is being updated to be powered by a new fully open-source Language Server Protocol (LSP) Host. To use the LSP-powered version, click on the “Switch to Pre-Release Version” or “Install Pre-Release” button or above. To use the OmniSharp-powered version, click “Install Release Version” or continuing using the 1.x version you already have installed.
3+
C# is the feature-rich, language support for C# in VS Code. This extension is being updated to be powered by a new fully open-source Language Server Protocol (LSP) Host. To use the LSP-powered version, click on the “Switch to Pre-Release Version” or “Install Pre-Release” button above. To use the OmniSharp-powered version, click “Install Release Version” or continuing using the 1.x version you already have installed.
44

55
Welcome to the C# extension for Visual Studio Code! This extension provides the following features inside VS Code:
66

@@ -34,7 +34,7 @@ If you still need Unity or .NET Framework support, you can set `omnisharp.useMod
3434
See issue [#5120](https://github.com/OmniSharp/omnisharp-vscode/issues/5120) for more details.
3535

3636
## What's new in 1.25.9
37-
* Readme updates (PR: [#5705](https://github.com/OmniSharp/omnisharp-vscode/pull/5672))
37+
* Readme updates (PR: [#5705](https://github.com/OmniSharp/omnisharp-vscode/pull/5705))
3838

3939
## What's new in 1.25.8
4040
* Update Razor to 7.0.0-preview.23258.1 (PR: [#5672](https://github.com/OmniSharp/omnisharp-vscode/pull/5672))

debugger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ Your project is now all set. Set a breakpoint or two where you want to stop, cli
6666
### Debugging Code compiled on another computer
6767
If your code was built on a different computer from where you would like to run in there are a few things to keep in mind --
6868

69-
* **Source Maps**: Unless your local source code is at exactly the same path as where the code was originally built you will need to add a [sourceFileMap](https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#source-file-map) to launch.json.
69+
* **Source Maps**: Unless your local source code is at exactly the same path as where the code was originally built you will need to add a [sourceFileMap](https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md#source-file-map) to launch.json.
7070
* **Portable PDBs**: If the code was built on Windows, it might have been built using Windows PDBs instead of portable PDBs, but the C# extension only supports portable PDBs. See the [portable PDB documentation](https://github.com/OmniSharp/omnisharp-vscode/wiki/Portable-PDBs#how-to-generate-portable-pdbs) for more information.
71-
* **Debug vs. Release**: It is much easier to debug code which has been compiled in the `Debug` configuration. So unless the issue you are looking at only reproduces with optimizations, it is much better to use Debug bits. If you do need to debug optimized code, you will need to disable [justMyCode](https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#just-my-code) in launch.json.
71+
* **Debug vs. Release**: It is much easier to debug code which has been compiled in the `Debug` configuration. So unless the issue you are looking at only reproduces with optimizations, it is much better to use Debug bits. If you do need to debug optimized code, you will need to disable [justMyCode](https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md#just-my-code) in launch.json.
7272

7373
#### [Configurating launch.json for C# Debugging](debugger-launchjson.md)
7474

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3645,7 +3645,7 @@
36453645
"description": "Environment variables passed to dotnet. Only valid for hosted apps."
36463646
},
36473647
"dotNetConfig": {
3648-
"description": "Options passed to the underlying .NET debugger. For more info, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger.md.",
3648+
"description": "Options passed to the underlying .NET debugger. For more info, see https://github.com/dotnet/vscode-csharp/blob/main/debugger.md.",
36493649
"type": "object",
36503650
"required": [],
36513651
"default": {},

src/assets.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ export function createWebLaunchConfiguration(programPath: string, workingDirecto
290290
const configuration = {
291291
"OS-COMMENT1": "Use IntelliSense to find out which attributes exist for C# debugging",
292292
"OS-COMMENT2": "Use hover for the description of the existing attributes",
293-
"OS-COMMENT3": "For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md",
293+
"OS-COMMENT3": "For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md",
294294
"name": ".NET Core Launch (web)",
295295
"type": "coreclr",
296296
"request": "launch",
@@ -345,7 +345,7 @@ export function createLaunchConfiguration(programPath: string, workingDirectory:
345345
const configuration = {
346346
"OS-COMMENT1": "Use IntelliSense to find out which attributes exist for C# debugging",
347347
"OS-COMMENT2": "Use hover for the description of the existing attributes",
348-
"OS-COMMENT3": "For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md",
348+
"OS-COMMENT3": "For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md",
349349
"name": ".NET Core Launch (console)",
350350
"type": "coreclr",
351351
"request": "launch",

src/coreclr-debug/debugConfigurationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function checkForDevCerts(dotNetCliPaths: string[], eventStream: EventStream){
119119
}
120120
if (result?.title === labelMoreInfo)
121121
{
122-
const launchjsonDescriptionURL = 'https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#check-for-devcert';
122+
const launchjsonDescriptionURL = 'https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md#check-for-devcert';
123123
vscode.env.openExternal(vscode.Uri.parse(launchjsonDescriptionURL));
124124
checkForDevCerts(dotNetCliPaths, eventStream);
125125
}

test-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Windows: .NET Framework along with [MSBuild Tools](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022)
77
- MacOS/Linux: [Mono with MSBuild](https://www.mono-project.com/download/stable/)
88

9-
See [OmniSharp Options](https://github.com/OmniSharp/omnisharp-vscode/blob/master/test-plan.md#omnisharpusemodernnet-all-platforms) for more details.
9+
See [OmniSharp Options](https://github.com/dotnet/vscode-csharp/blob/main/test-plan.md#omnisharpusemodernnet-all-platforms) for more details.
1010

1111
### Validation
1212

0 commit comments

Comments
 (0)