Jonathan Peppers
Jonathan Peppers
@dependabot rebase
No, we just have `.pkg` support on Mac. If it's just a couple commands, might be easy to add to `boots`? If you send a PR, I would be happy...
The `nuget` command is part of Mono, you can see where it is by running: ``` % which nuget /Library/Frameworks/Mono.framework/Versions/Current/Commands/nuget ``` `nuget` works because `/Library/Frameworks/Mono.framework/Versions/Current/Commands` is added to `$PATH` delimited...
In the same place you printed this, if you just run `nuget` by itself, does it print out the help text?
Maybe try not updating Mono at all, just update Xamarin.iOS, Xamarin.Android, .etc? Updating Mono would only really affect the MSBuild version you're building with, so probably wouldn't change the resulting...
If you select this, is Mono new enough for C# 9? 
This is a hack, but maybe your script could make a symbolic link in the current directory. Untested: ```bash ln -s /Library/Frameworks/Mono.framework/Versions/Current/Commands/nuget nuget ``` I'm not sure which one goes...
@knocte I think for WinGet to work: 1. WinGet would need to be able to install `.vsix` files into Visual Studio and manage multiple Visual Studio instances. (I have 3...
It might be generally interesting to be able to download zips and extract them. Things like OpenJDK would work that way. For the Android SDK/NDK my first thought was to...
We'll also need to know what MSBuild property toggles the inclusion of this component. We have these basically hardcoded right now: https://github.com/xamarin/xamarin-android/blob/73f10df63b00ee8a21d61183056a26922c83e89d/src/Xamarin.Android.Build.Tasks/Microsoft.Android.Sdk/targets/Microsoft.Android.Sdk.AssemblyResolution.targets#L198-L200