Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request dotnet#30 from muhammadsammy/muhammadsammy-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy authored Oct 12, 2021
2 parents 1fc22c4 + 09e54b6 commit 691d821
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
If the `CSharp: Report an issue` command doesn't appear, make sure that you have C# extension version 1.17.0 or newer installed.
-->


# free-omnisharp-vscode

### ⚠️ Please do not report issues specific to this fork to the original repository

---

## Environment data
`dotnet --info` output:
VS Code version:
Expand Down
6 changes: 4 additions & 2 deletions src/features/reportIssue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Options } from "../omnisharp/options";
import { IMonoResolver } from "../constants/IMonoResolver";
import { IGetDotnetInfo } from "../constants/IGetDotnetInfo";

const issuesUrl = "https://github.com/OmniSharp/omnisharp-vscode/issues/new";
const issuesUrl = "https://github.com/muhammadsammy/free-omnisharp-vscode/issues/new";

export default async function reportIssue(vscode: vscode, eventStream: EventStream, getDotnetInfo: IGetDotnetInfo, isValidPlatformForMono: boolean, options: Options, monoResolver: IMonoResolver) {
const dotnetInfo = await getDotnetInfo();
Expand All @@ -37,6 +37,8 @@ export default async function reportIssue(vscode: vscode, eventStream: EventStre
## Environment information ##
⚠️⚠️ This report was from [this extension](https://github.com/muhammadsammy/free-omnisharp-vscode) which is a **fork** of the official extension
**VSCode version**: ${vscode.version}
**C# Extension**: ${csharpExtVersion}
Expand Down Expand Up @@ -116,4 +118,4 @@ function getInstalledExtensions(vscode: vscode) {
function getCsharpExtensionVersion(vscode: vscode): string {
const extension = vscode.extensions.getExtension(CSharpExtensionId);
return extension.packageJSON.version;
}
}

0 comments on commit 691d821

Please sign in to comment.