Andrew Arnott
Andrew Arnott
The `Guidance.md` doc mentions using `AsyncLazy`. I know Roslyn defines this internally, and the vs-threading library offers one publicly. Which one (or a new one?) are you proposing customers should...
For folks building locally, this makes the assembly identity match the official one so that folks can build their own version of Newtonsoft.Json.dll that other assemblies that reference this one...
### System Details - posh-git version/path: 1.0.0 ~\OneDrive\Documents\PowerShell\Modules\posh-git\1.0.0 - PowerShell version: 7.2.0 - git version 2.34.1.windows.1 - OS: Microsoft Windows NT 10.0.22000.0 ### Issue Description The `Get-GitStatus` function ignores the...
This repros locally and in [Azure Pipelines builds](https://dev.azure.com/andrewarnott/OSS/_build/results?buildId=1843&view=logs&j=2d2b3007-3c5c-5840-9bb0-2b1ea49925f3). ``` git clone https://github.com/AArnott/Xunit.StaFact.git cd Xunit.StaFact\src git checkout 6d1a5e6023f612ad00d2e00f5204f362dc0a71ce dotnet test --filter "TestCategory!=FailureExpected" -v n /p:CollectCoverage=true ``` Notice how net472 runs 0...
When my tests hang or crash in Azure Pipelines, I collect a DMP of the test process along with all the dll's and pdb's so I can analyze the failure...
### Issue Description When a valid project file starts with this line: ```xml ``` MSBuild can build it, but the `ProjectInstance.FromFile` throws an `InvalidProjectFileException`. ### Steps to Reproduce Add ``...
### Issue Description While trying to build a static graph of our (large) repo, an `InternalErrorException` is thrown. Given it's an *internal* error, I don't know if the project it...
### Issue Description When library A references library B, and both support arm64 as a platform, building library A for arm64 should also build library B for arm64. But instead,...
We should investigate the test failures from the tests disabled in #1040. ## SwitchToMainThreadShouldNotLeakJoinableTaskWhenGetResultRunsFirst ``` Assert.Null() Failure Expected: (null) Actual: Object { } at JoinableTaskTests.SwitchToMainThreadShouldNotLeakJoinableTaskWhenGetResultRunsFirst() in D:\a\1\s\test\Microsoft.VisualStudio.Threading.Tests\JoinableTaskTests.cs:line 3462 ``` ##...
Compile the following for .NET 6, where CTR.DisposeAsync is defined, to see the false warning. ```cs Task Foo() { return Task.CompletedTask; void CompletionHandler(CancellationTokenRegistration registration) { #pragma warning disable VSTHRD103 //...