You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.NET Command Line Tools (1.0.0-preview4-004081)
Product Information:
Version: 1.0.0-preview4-004081
Commit SHA-1 hash: 6d57ca7e14
Runtime Environment:
OS Name: Mac OS X
OS Version: 10.12
OS Platform: Darwin
RID: osx.10.11-x64
VS Code version: 1.7.1
C# Extension version: 1.5.2
Steps to reproduce
/// <exception cref="ClientException">Thrown if <paramref name="absolutePath"/> is null, empty, or whitespace-only.</exception>publicstringPushSync(stringabsolutePath,objectcontent){
...}
Hover over PushSync to reveal tooltip.
Expected output
ClientException Thrown if absolutePath is null, empty, or whitespace-only.
Actual output
ClientException Thrown if absolutePathis null, empty, or whitespace-only.
Notice the missing space between absolutePath and is.
Other
I tried with both <paramref name="absolutePath"></paramref> and <paramref name="absolutePath"/>.
The text was updated successfully, but these errors were encountered:
Environment data
dotnet --info
output:VS Code version: 1.7.1
C# Extension version: 1.5.2
Steps to reproduce
Hover over
PushSync
to reveal tooltip.Expected output
ClientException Thrown if absolutePath is null, empty, or whitespace-only.
Actual output
ClientException Thrown if absolutePathis null, empty, or whitespace-only.
Notice the missing space between
absolutePath
andis
.Other
I tried with both
<paramref name="absolutePath"></paramref>
and<paramref name="absolutePath"/>
.The text was updated successfully, but these errors were encountered: