Jared Parsons

Results 62 issues of Jared Parsons

The code formatter is great tool for getting code into the particular format desired by our guidelines. That is great for helping developers meet our style guidelines but it does...

enhancement

Consider the following field definition: ``` csharp class C { private int _field1 // Comment private int field2; // Comment } ``` After formatting we end up with: ``` csharp...

enhancement

I'm working on a simple app that will query all bugs for a given milestone using Octokit. The target repo is initially [dotnet/roslyn](https://github.com/dotnet/roslyn) which has a very high number of...

Question: using the SDK
improvement

The code hygiene test to ensure we don't end up reference FSharp.Core.dll needs to be disabled while the F# team investigates the `--standalone` regression that happen in VS 2022 update...

bug

Part of the Visual Studio performance work is having packages be fully async loaded. VsVim has an `AsyncPackage` now but hasn't marked it for full background load. https://devblogs.microsoft.com/visualstudio/improving-the-responsiveness-of-critical-scenarios-by-updating-auto-load-behavior-for-extensions/ This should...

bug

The outlining / folding behavior isn't working as expected in tests when run under VS 2022. Appears to not be updating in tests but works fine in UI. This is...

This is a follow up item to the work being done to move to a shared project approach (#2900). The VSSDK analyzers were added as a part of modernization and...

bug

Just trying to update a simple global tool that I authored named `runfo`. Just following the instructions: ``` > dotnet tool update runfo Cannot find a manifest file. For a...

I have some cases in the C# compiler where I have a set of DLLs that I want to use as `ReferenceAssemblies`. Yet I can find no reasonable way of...

question
Area-MS.CA.Testing

Last night I was looking into the possibility of moving [dotnet/roslyn](http://github.com/dotnet/roslyn) to using the GitLink MSBuild task. Previously we were using the command line tool as a post build step....