-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into deprecate_version
- Loading branch information
Showing
6 changed files
with
955 additions
and
690 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 |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Create a bug report | ||
| title: '' | ||
| labels: '' | ||
| assignees: '' | ||
|
|
||
| --- | ||
|
|
||
| ### Description | ||
|
|
||
| <!-- | ||
| * Please share short description of the problem | ||
| --> | ||
|
|
||
| ### Details | ||
|
|
||
| <!-- | ||
| * Include the relevant yaml, platform, and dotnet versions in use | ||
| * If an error occurred on a public action, please share a link | ||
| * Include any error messages received in text (search does not work for images) | ||
| * Was this a regression from previous behavior? | ||
| --> |
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,5 @@ | ||
| blank_issues_enabled: true | ||
| contact_links: | ||
| - name: .NET issues | ||
| url: https://github.com/dotnet/runtime#filing-issues | ||
| about: Issues with the runtime, class libraries, frameworks, and SDK should be addressed directly with the .NET team. Documentation on filing issues can be found here. |
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 |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ on: | |
| pull_request: | ||
| push: | ||
| branches: | ||
| - master | ||
| - main | ||
| - releases/* | ||
|
|
||
| jobs: | ||
|
|
||
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,23 @@ | ||
| import fs = require('fs'); | ||
|
|
||
| describe('csc tests', () => { | ||
| it('Valid regular expression', async () => { | ||
| var cscFile = require('../.github/csc.json'); | ||
| var regex = cscFile['problemMatcher'][0]['pattern'][0]['regexp']; | ||
|
|
||
| console.log(regex); | ||
| var re = new RegExp(regex); | ||
|
|
||
| // Ideally we would verify that this | ||
| var stringsToMatch = [ | ||
| 'Program.cs(10,79): error CS1002: ; expected [/Users/zacharyeisinger/Documents/repo/setup-dotnet/__tests__/sample-broken-csproj/sample.csproj]', | ||
| "S:\\Msbuild\\src\\Build\\Evaluation\\ExpressionShredder.cs(33,7): error CS1003: Syntax error, ',' expected [S:\\msbuild\\src\\Build\\Microsoft.Build.csproj > Properties:prop]" | ||
| ]; | ||
|
|
||
| stringsToMatch.forEach(string => { | ||
| var matchStr = string.match(re); | ||
| console.log(matchStr); | ||
| expect(matchStr).toEqual(expect.anything()); | ||
| }); | ||
| }, 10000); | ||
| }); |
Oops, something went wrong.