Sebastien Pouliot
Sebastien Pouliot
I wonder how common it is. This one, OpenGL, is deprecated. The attribute is a pretty good idea 👍 > Add a warning or error to the static registrar if...
> This might also apply to net6.0-macos apps, Yes, I can confirm that this is the behaviour for `net6.0-macos` too. IIRC @rolfbjarne wanted to ensure consistent output whatever the arch...
Also, when switching to iOS `dotnet restore` works just fine ```xml net6.0-ios iossimulator-arm64 ```
using `maccatalyst-x64` seems to work ``` dotnet build -f net6.0-maccatalyst -r maccatalyst-x64 --no-restore MSBuild version 17.3.0+92e077650 for .NET /usr/local/share/dotnet/sdk/6.0.400/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets(1114,5): warning NETSDK1179: One of '--self-contained' or '--no-self-contained' options are required when...
@rolfbjarne yes, `restore` works - but you can't build a `maccatalyst-arm64` binary of a default maui template. ``` dotnet build -f:net6.0-maccatalyst -r:maccatalyst-arm64 MSBuild version 17.3.0+92e077650 for .NET Determining projects to...
@rolfbjarne was your project based on the default MAUI template for all (at least multiple) platforms ? ``` $ dotnet restore /p:RuntimeIdentifier=maccatalyst-arm64 Determining projects to restore... /usr/local/share/dotnet/packs/Microsoft.iOS.Sdk/15.4.430/targets/Xamarin.Shared.Sdk.targets(1744,3): error : The...
Thanks! Works for MAUI and likely on my original code (need to remove some workaround to try it). I thought I updated to 447 but I now remember the downloads...
> This would mean making mlaunch a .NET app not a bad thing since you'll eventually need to make it happen :) > since we don't support arm64 for macOS...
> Yes, but IIRC mmp doesn't support universal apps. That I have not tried... but I don't recall it was possible for x86 / x86_64 :(
Shameless plug but you might want to use https://github.com/spouliot/dotnet-tools/tree/master/app-compare to compare the size of the current/dotnet apps