SwiftBindings.Apple.WeatherKit 26.2.6

dotnet add package SwiftBindings.Apple.WeatherKit --version 26.2.6
                    
NuGet\Install-Package SwiftBindings.Apple.WeatherKit -Version 26.2.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SwiftBindings.Apple.WeatherKit" Version="26.2.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SwiftBindings.Apple.WeatherKit" Version="26.2.6" />
                    
Directory.Packages.props
<PackageReference Include="SwiftBindings.Apple.WeatherKit" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SwiftBindings.Apple.WeatherKit --version 26.2.6
                    
#r "nuget: SwiftBindings.Apple.WeatherKit, 26.2.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SwiftBindings.Apple.WeatherKit@26.2.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SwiftBindings.Apple.WeatherKit&version=26.2.6
                    
Install as a Cake Addin
#tool nuget:?package=SwiftBindings.Apple.WeatherKit&version=26.2.6
                    
Install as a Cake Tool

SwiftBindings.Apple.WeatherKit

Native .NET bindings for Apple's WeatherKit framework — current conditions, hourly and daily forecasts, severe-weather alerts, and historical data. These are not Objective-C proxy wrappers; they use .NET 10's native Swift interop for direct, high-performance calls into Swift APIs from C#.

📖 Full usage guide → — the complete fetch path (WeatherServiceWeather → current/hourly/daily forecasts), reading Measurement<T> values, conditions/precipitation/wind/UV/moon enums, alerts, attribution, and the APIs that aren't bound yet.

Installation

dotnet add package SwiftBindings.Apple.WeatherKit

Requirements

  • .NET 10.0+
  • iOS 26.2+, macOS 26.2+, Mac Catalyst 26.2+, tvOS 26.2+
  • macOS host for development
  • WeatherKit capability enabled and a paid Apple Developer Program membership (WeatherKit usage is metered and requires entitlement)

Usage

using WeatherKit;

var service = WeatherService.Shared;

// Get current attribution (logo + URL link required by Apple's terms)
var attribution = await service.GetAttributionAsync();

// Localised condition / phase descriptions
var phase = MoonPhase.Full.GetDescription();
var direction = Wind.CompassDirectionType.North.GetDescription();

Iterating a forecast

Forecast<T> projects to IReadOnlyList<T>, so the standard C# enumeration shape just works:

// `weather` is an instance returned by WeatherService.GetWeatherAsync(...)
foreach (var hour in weather.HourlyForecast)
{
    Console.WriteLine($"{hour.Date}: {hour.Temperature}");
}

var firstDay = weather.DailyForecast[0];
var dayCount = weather.DailyForecast.Count;

Documentation

How It Works

These bindings are auto-generated by Swift Dotnet Bindings using .NET 10's native Swift interop via the SwiftBindings SDK.

License

The bindings are MIT licensed. WeatherKit is part of the Apple SDK; refer to Apple's licensing for the underlying framework.

Product Compatible and additional computed target framework versions.
.NET net10.0-ios26.2 is compatible.  net10.0-maccatalyst26.2 is compatible.  net10.0-macos26.2 is compatible.  net10.0-tvos26.2 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.2.6 63 6/11/2026
26.2.5 101 6/1/2026
26.2.3 96 5/19/2026
26.2.1 97 5/3/2026