-
-
Notifications
You must be signed in to change notification settings - Fork 0
Update recommendations in extensions.json and enhance README for clar… #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,6 @@ | ||
| { | ||
| "recommendations": [ | ||
| "ms-dotnettools.csharp", | ||
| "formulahendry.dotnet-test-explorer", | ||
| "github.vscode-pull-request-github" | ||
| "github.vscode-pull-request-github", | ||
| "ms-dotnettools.csdevkit" | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,7 +53,7 @@ public void ShouldThrow(string invalidDirectoryName, char replacement) | |
|
|
||
| if (IsRunningOnNet4x()) | ||
| { | ||
| Assert.Pass("Test is not thought to be run with .net framwework / unicode 8"); | ||
| Assert.Pass("Test is not thought to be run with .net framework / unicode 8"); | ||
|
||
| } | ||
|
|
||
| Assert.That(ex.Message, Is.EqualTo("Replacement '*' is invalid for Windows (Parameter 'replacement')")); | ||
|
|
@@ -171,7 +171,7 @@ public void ShouldTruncateLongFileNamesPreserveUnicodeTextElements(string testSu | |
| { | ||
| if (IsRunningOnNet4x()) | ||
| { | ||
| Assert.Pass("Test is not thought to be run with .net framwework / unicode 8"); | ||
| Assert.Pass("Test is not thought to be run with .net framework / unicode 8"); | ||
|
||
| } | ||
|
|
||
| var invalidDirectoryName = new string('a', countOfFillingAChars) + testSuffix; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ public void ShouldBehaviorOsDependentOnWritingFilenameWithMoreThan255Bytes() | |
| { | ||
| if (IsRunningOnNet4x()) | ||
| { | ||
| Assert.Pass("Test is not thought to be run with .net framwework / unicode 8"); | ||
| Assert.Pass("Test is not thought to be run with .net framework / unicode 8"); | ||
|
||
| } | ||
|
|
||
| var expected = !RuntimeInformation.IsOSPlatform(OSPlatform.Linux); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -172,7 +172,7 @@ public void ShouldTruncateLongFileNamesPreserveUnicodeTextElements(string testSu | |
| { | ||
| if (IsRunningOnNet4x()) | ||
| { | ||
| Assert.Pass("Test is not thought to be run with .net framwework / unicode 8"); | ||
| Assert.Pass("Test is not thought to be run with .net framework / unicode 8"); | ||
|
||
| } | ||
|
|
||
| var invalidFilename = new string('a', countOfFillingAChars) + testSuffix; | ||
|
|
@@ -202,7 +202,7 @@ public void ShouldNotBeTouchedBySanitizer(string unicodeSpecificEmoticon, int? u | |
| Assert.That(FileWriteAsserter.TryWriteFileToTempDirectory(sanitizedFilename), Is.True); | ||
| } | ||
|
|
||
| // https://learn.microsoft.com/en-us/dotnet/api/system.globalization.charunicodeinfo?view=net-8.0#notes-to-callers | ||
| // https://learn.microsoft.com/en-us/dotnet/api/system.globalization.charunicodeinfo?view=net-8.0#notes-to-callers | ||
| // Unicode examples https://emojipedia.org/unicode-17.0 | ||
| [TestCase("😀", "Unicode 6.1 example https://emojipedia.org/grinning-face")] | ||
| [TestCase("🚴", "Unicode 6 example https://emojipedia.org/person-biking")] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling: '.net framwework' is now '.net framework'.