-
Updated
Nov 20, 2020 - JavaScript
visual-studio
Here are 3,624 public repositories matching this topic...
-
Updated
Nov 30, 2020 - C#
-
Updated
Nov 30, 2020 - C++
-
Updated
Nov 2, 2020 - C#
Related: dotnet/msbuild#4682 and dotnet/msbuild#5871
In FileUtiliies.cs
we have RemoveQuotes
and TrimAndStripAnyQuotes
. We should consider adding some sort of Ensure-This-Path-Is-Single-Quoted
function.
Possible names:
- EnsurePathIsSingleQuoted
- That's all I got!
Add Missing XML Docs
Summary
Many API's are currently lacking XML docs or have invalid markup. As we begin to explore adding API documentation to the Prism Docs, we need to update the existing codebase with more complete XML docs so that these docs can be generated for the docs site.
HACKTOBERFEST UPDATE
Thank you for joining us for your Hacktoberfest contributions... Please take some time to familiari
-
Updated
Nov 18, 2020 - C#
-
Updated
Nov 30, 2020 - C#
-
Updated
Oct 18, 2020 - C#
-
Updated
Nov 30, 2020 - C
Feature category
- Check(Type 'x') any that Applicable item:
- Vim
- Vim plugin
Currently it seems that VsVim (and Vim for that matter) do not support interpolated strings of C#. It would be really neat if in a string like the following:
logger.Info($"Starting to move tokens {(string.Join(", ", tokens))} from card with code: {oldCard.Code} to replacement card with
-
Updated
Oct 1, 2020 - C#
-
Updated
Nov 30, 2020 - F#
-
Updated
Nov 28, 2020 - C++
-
Updated
Jun 1, 2020 - C#
When a solution isn't open, the messaging in the GitHub panel is:
But there is no such menu item when there is no open solution:
<img width="1591" alt="screen shot 2018-06-11 at 12 57 37 pm" src="https://user-images.githubuserc
-
Updated
Nov 29, 2020 - C#
-
Updated
Nov 27, 2020 - C#
-
Updated
Nov 24, 2020 - C#
-
Updated
Oct 19, 2020 - Shell
💻 Environment
Toggl Version: feature/lixux-qml
HEAD
🐞 Actual behavior
💯 Expected behavior
![image](https://user-images.githubusercontent.com/3977440/78668824-9b7c3180-78db-11ea-9f0f-e97e7d1c92
-
Updated
Sep 22, 2020 - C#
-
Updated
Nov 13, 2020 - C#
-
Updated
Sep 16, 2020 - C#
Currently folder publish only publishes folders with files in them.
expected:
Folder publish should publish empty folders as well.
Improve this page
Add a description, image, and links to the visual-studio topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the visual-studio topic, visit your repo's landing page and select "manage topics."
The
ScanDirectory
method of FileScanner allocates pointers with new and returns raw pointers. It should useunique_ptr
instead.Note: Wait for #13444 resolution before working on this.