English 中文(简体)
无法为 UWP 应用程序安装 Google 。 FlatBuffers Nuget 软件包
原标题:Unable to install Google.FlatBuffers Nuget package for the UWP application

I got the below error while installing FlatBuffers package for the UWP app NU1202: Package Google.FlatBuffers 24.3.25 is not compatible with uap10.0.17763 (UAP,Version=v10.0.17763) / win10-x86. Package Google.FlatBuffers 24.3.25 supports:

  • net6.0 (.NETCoreApp,Version=v6.0)
  • net8.0 (.NETCoreApp,Version=v8.0)
  • netstandard2.1 (.NETStandard,Version=v2.1)
问题回答

抱歉, 目前 UWP 仅支持 < strong>.NET Standard 2.0 . . .NET Standard 2. 1 , .net6 .net8 在 UWP 中不支持 。

有关讨论见此。

https://developercommunity.visualstudio.com/t/Add-NET-678-support-to-UWP/1596483 https://stackoverflow.com/a/58077778/17316773





相关问题
How to bind a TabControl to an ObservableCollection in XAML

I have the following line of code in my code-behind class. TabControl.ItemsSource = ((MainWindowViewModel)DataContext).TabItemViewModels; I would like to move this to the XAML file. In brief, ...

Bind to ancestor of adorned element

Here is the case: <DataTemplate x:Key="ItemTemplate" DataType="local:RoutedCustomCommand"> <Button Command="{Binding}" Content="{Binding Text}" ...

FlowDocument Force a PageBreak (BreakPageBefore)

I m using C# to create a FlowDocument and fill it with data within a table. Example: FlowDocument flowDoc = new FlowDocument(); Table table1 = new Table(); flowDoc.Blocks.Add(table1); table1....

Editing a xaml icons or images

Is it possible to edit a xaml icons or images in the expression design or using other tools? Is it possible to import a xaml images (that e.g you have exported) in the expression designer for editing?...

WPF TreeView binding through XAML

So I have a class structure like this Store Owner Cashier List of Products Product Name Price List of Vendors Company Name Contact Name So there are 4 ...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...