Andy Zivkovic

Results 25 comments of Andy Zivkovic

For what it's worth, when I do `dotnet new maui ; dotnet publish -f net6.0-ios -r ios-arm64` I get the error message: > C:\Program Files\dotnet\packs\Microsoft.MacCatalyst.Sdk\15.4.303\targets\Xamarin.Shared.Sdk.targets(1739,3): error : The RuntimeIdentifier 'ios-arm64'...

> Consider not creating .csproj but instead .nuspec file, why is that? With a project file the project can be added to the solution and customers using Visual Studio can...

The customer report was when they ran `Add-Migration` from Package Manager Console, which certainly is EF Code. Unfortunately I don't know how to get a "powershell call stack", so I...

FYI, this is affecting nuget.exe as well. We had to skip a bunch of our tests that no longer work: https://github.com/NuGet/NuGet.Client/pull/4768 And we now have a customer telling us it's...

I completely understand the performance concern. I think a helper method sounds best, but docs are good too. But honestly, I don't use your library, I was just trying to...

Here's some test code that I believe should be made to work: ```csharp var test = @" using System.Threading.Tasks; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; using Task = System.Threading.Tasks.Task; class Test {...

> The other issue we have in tooling this is that the values for NuGetAuditMode and NuGetAuditLevel don't evaluate to their default values when unspecified. From a basic customer point...

We removed the NU1905 (no vulnerability data) warning, so `NuGetAudit` is no longer a tri-state. It's strictly `true` or `false` now: https://github.com/NuGet/NuGet.Client/pull/5398 I haven't yet done anything about setting defaults...

Thanks for the reminder. I created a tracking issue to get this done, and have already reached out to people who care more about telemetry than I do to see...

The properties have been merged into NuGet just now. Hopefully tonight it will be merged into VS main branch, but it might take a few days depending on who is...