open-meteo-dotnet icon indicating copy to clipboard operation
open-meteo-dotnet copied to clipboard

.NET Standard 2.0 support

Open zxbmmmmmmmmm opened this issue 1 year ago • 0 comments

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 and LangVersion of the project

  <PropertyGroup>
    <TargetFramework>netstandard2.0</TargetFramework>
  </PropertyGroup>
  <PropertyGroup>
    <LangVersion>latestMajor</LangVersion>
  </PropertyGroup>

All unit tests can pass image

zxbmmmmmmmmm avatar Dec 16 '23 12:12 zxbmmmmmmmmm