You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you create a stock Maui using visual studio templates, selecting 7.0 and including windows 10 as a target and you try to add ReactiveUI.Maui using NuGet, you get error about the Microsoft.Windows.SKD.BuildTools needing to be >= 10.0.22621.756 (755 is installed). If you try to install the that BuildTools version, NuGet won't even let you select it, indicating that 756 is blocked for this project. The only recourse seems to be to copy this block from the ReactiveUI.Maui project in the github repo:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
If you create a stock Maui using visual studio templates, selecting 7.0 and including windows 10 as a target and you try to add ReactiveUI.Maui using NuGet, you get error about the Microsoft.Windows.SKD.BuildTools needing to be >= 10.0.22621.756 (755 is installed). If you try to install the that BuildTools version, NuGet won't even let you select it, indicating that 756 is blocked for this project. The only recourse seems to be to copy this block from the ReactiveUI.Maui project in the github repo:
<ItemGroup Condition="$(TargetFramework.StartsWith('net6.0-windows10')) or $(TargetFramework.StartsWith('net7.0-windows10'))">
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.3.230331000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.756" />
</ItemGroup>
Am I missing something? This seems like a hack. It shouldn't be this hard to add ReactiveUI to a template project.
Beta Was this translation helpful? Give feedback.
All reactions