-
Updated
Feb 8, 2021 - JavaScript
visual-studio
Here are 3,807 public repositories matching this topic...
-
Updated
Feb 21, 2021 - CMake
We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:
constexpr money32 operator"" _GBP(long double money)
{
return money * 10;
}
static_assert(MONEY(2, 40) == 2.40_GBP);
Go through the codebase and replace all MONEY macro uses with the equivalent version. You m
-
Updated
Nov 2, 2020 - C#
Issue Description
msbuild's code is open source under the MIT license. This allows anyone to examine, modify and distribute the sources (among other things). However, the source code repository includes a documentation file that has a "Microsoft Confidential" notice:
https://github.com/dotnet/msbuild/blob/master/src/Shared/Shared%20Code.doc
I suspect this is a mistake since there i
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
Feb 21, 2021 - C#
-
Updated
Jan 28, 2021 - C#
-
Updated
Feb 21, 2021 - 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
Feb 9, 2021 - C#
-
Updated
Feb 21, 2021 - F#
-
Updated
Feb 21, 2021 - C++
-
Updated
Feb 17, 2021 - 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
Feb 21, 2021 - C#
-
Updated
Feb 19, 2021 - C#
-
Updated
Jan 30, 2021 - Shell
💻 Environment
Platform: Windows
OS Version: Windows 10
Toggl Version: 7.4.418
🐞 Actual behavior
When the "run app on Win login" feature is enabled the app will run when you log into windows but it will not be in focus. You will only be able to see it running ty the tray i
-
Updated
Feb 8, 2021 - C#
-
Updated
Feb 21, 2021 - C#
-
Updated
Feb 15, 2021 - C#
We get NullReferenceException when running dotnet new related commands in Ubuntu, the error message is like:
dotnet -d new console
Telemetry is: Enabled
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.DotNet.Cli.Utils.Muxer..ctor()
at Microsoft.DotNet.Tools.New.NewCommandShim.CreateHost()
at Microsoft.DotNet.Tools.New.
-
Updated
Jan 8, 2021 - C++
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."
Minor thing and not related to your change but just noticed that SyntaxTrees is IEnumerable but both C# and VB represent it as ImmutableArray. So we are boxing it unnecessarily. Can't change public API but could change and use CommonSyntaxTrees.
Originally posted by @tmat in dotnet/roslyn#50615 (comment)
https://github.com/