-
Updated
Jan 18, 2021 - JavaScript
visual-studio
Here are 3,754 public repositories matching this topic...
-
Updated
Jan 23, 2021 - C++
See #13737 for more details.
-
Updated
Nov 2, 2020 - C#
These are new in .NET 5.0: https://docs.microsoft.com/en-us/dotnet/api/system.operatingsystem?view=net-5.0
They expose methods for all the common operating systems like OperatingSystem.IsWindows() but also still support the API where you pass in a string: OperatingSystem.IsOSPlatform(string platform).
The new APIs are easier to understand so we should consider exposing them.
Summary
The new ContainerLocator has effectively no exception handling in it, which allows a NullReferenceException to be thrown by ContainerLocator.Current from within Prism itself. Because Prism ensures this is always initialized properly, this cannot happen at runtime of an application, but it can happen in integration and unit testing scenarios, especially when attempting to test m
Add Missing XML Docs
-
Updated
Nov 18, 2020 - C#
-
Updated
Jan 23, 2021 - C#
-
Updated
Jan 23, 2021 - C#
-
Updated
Jan 23, 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
Oct 1, 2020 - C#
-
Updated
Jan 23, 2021 - F#
-
Updated
Jan 22, 2021 - 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
Jan 23, 2021 - C#
-
Updated
Jan 22, 2021 - C#
-
Updated
Dec 10, 2020 - C#
-
Updated
Jan 5, 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
Jan 2, 2021 - C#
-
Updated
Jan 13, 2021 - C#
-
Updated
Jan 22, 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.
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/