We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to add Open Meteo API support to my UWP weather application
Unfortunately, UWP only supports .NET Standard 2.0
Change the TargetFramework and LangVersion of the project
TargetFramework
LangVersion
<PropertyGroup> <TargetFramework>netstandard2.0</TargetFramework> </PropertyGroup>
<PropertyGroup> <LangVersion>latestMajor</LangVersion> </PropertyGroup>
All unit tests can pass
The text was updated successfully, but these errors were encountered:
AlienDwarf
No branches or pull requests
Description
I would like to add Open Meteo API support to my UWP weather application
Unfortunately, UWP only supports .NET Standard 2.0
Describe the solution you'd like
Change the
TargetFramework
andLangVersion
of the projectAll unit tests can pass
The text was updated successfully, but these errors were encountered: