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
I am not able to target UWP correctly. It fails on the below lines and falls into if part where there is return null although Uwp implementation is there but it is recognized as NETSTANDARD2_0.
Changing from uap10.0.18362 to uap10.0.16299, Project works as expected. Why is this happening?
To reproduce
open the project and select Uwp test project as target project
Run it on the local Pc
static IXFInAppBilling CreateXFInAppBilling()
{
#if NETSTANDARD1_0 || NETSTANDARD2_0
return null;
#else
#pragma warning disable IDE0022 // Use expression body for methods
return new XFInAppBillingImplementation();
#pragma warning restore IDE0022 // Use expression body for methods
#endif
}
Hi Team, We have added UNO in our existing project created in Visual studio 2019( using .NetStandard). we have set target and min version for UWP as per BugTracker sample project but we are getting below error while running the .wasm project.
Severity Code Description Project File Line Suppression State
Error NU1201 Project XXXXXX.UWP is not compatible with netstandard2.0 (.NETStandard,Version=v2.0). Project ImageViewerPOC.UWP supports: uap10.0.16299 (UAP,Version=v10.0.16299) XXXXXX.Wasm D:UnoXXXXXXX.WasmXXXXXX.Wasm.csproj 1
If i define the target frameworks as below in the attached project
I am not able to target UWP correctly. It fails on the below lines and falls into if part where there is return null although Uwp implementation is there but it is recognized as NETSTANDARD2_0.
Changing from uap10.0.18362 to uap10.0.16299, Project works as expected. Why is this happening?
To reproduce
InAppBillingPlugin.zip
The text was updated successfully, but these errors were encountered: