Eric StJohn
Eric StJohn
> For roslyn it's only a single reference in a single place: System.Runtime.Loader/4.3.0 by Microsoft.CodeAnalysis.Scripting.csproj. As a workaround you could `PackageDownload` then raw-reference the file. That will avoid pulling the...
Looks like the same as https://github.com/dotnet/wpf/issues/9589#issuecomment-3259564750 - I added a workaround and reccomended fix there.
The gist of the problem is that if a test relies on a NETStandard2.0 library that exposes types that were later inboxed in .NETFramework, that test will face type unification...
> For libraries is it advised to build all the specific framework versions over using a shared .netstandard version? I am using it for some coditional compilation but I guess...
> all of them would be called in some order Can that be done in a predictable, stable, way? Any precedent for compiler deciding order of execution? Maybe similar to...
Is it possible that we aren't disposing something (that CreateSelfSigned in the static constructor) and that thing accumulates resources in this external service? If it's happening more often we might...
2.2 SDK should work fine for targeting any previous netcoreapp. Double check that you're in a clean state: delete bin and obj and rerun `dotnet build`. If that doesn't work...
I took a look at a few passing builds, many have the same logs where they approach 95% memory usage but eventually succeed. Here are some samples: https://dev.azure.com/dnceng-public/public/_build/results?buildId=836601&view=logs&j=e80acbf0-bc87-577c-4c46-0016b0794913&t=f0fa9d72-e49a-5249-4d28-1199014b9857 https://dev.azure.com/dnceng-public/public/_build/results?buildId=838110&view=logs&j=e80acbf0-bc87-577c-4c46-0016b0794913&t=f0fa9d72-e49a-5249-4d28-1199014b9857&l=3923 https://dev.azure.com/dnceng-public/public/_build/results?buildId=837745&view=logs&j=e80acbf0-bc87-577c-4c46-0016b0794913&t=f0fa9d72-e49a-5249-4d28-1199014b9857&l=4228...
Appears to be addressed with https://github.com/dotnet/dotnet-api-docs/pull/10268
I wonder if there's a broader generalization to this proposal which might be "Plugin SDK". Similar constraints might apply to roslyn analyzers, MSBuild tasks, powershell commandlets, Azure functions, etc.