JpPublicHolidays 2.7.0

dotnet add package JpPublicHolidays --version 2.7.0
                    
NuGet\Install-Package JpPublicHolidays -Version 2.7.0
                    
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="JpPublicHolidays" Version="2.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JpPublicHolidays" Version="2.7.0" />
                    
Directory.Packages.props
<PackageReference Include="JpPublicHolidays" />
                    
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 JpPublicHolidays --version 2.7.0
                    
#r "nuget: JpPublicHolidays, 2.7.0"
                    
#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 JpPublicHolidays@2.7.0
                    
#: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=JpPublicHolidays&version=2.7.0
                    
Install as a Cake Addin
#tool nuget:?package=JpPublicHolidays&version=2.7.0
                    
Install as a Cake Tool

JpPublicHolidays.NET

内閣府ホームページで公開されている「国民の祝日」CSVファイルを扱うためのライブラリです

alternate text is missing from this package README image

Build status

Install

Quick Start

C# 7.1

using JpPublicHolidays;
using System;
using System.Threading.Tasks;

namespace ConsoleApp
{
    class Program
    {
        static async Task Main(string[] args)
        {
            var holidays = await PublicHolidays.Get();
            foreach (var holiday in holidays)
            {
                Console.WriteLine($"{holiday.Name} {holiday.Date.ToShortDateString()}");
            }
            Console.ReadKey();
        }
    }
}

C# 9.0

using JpPublicHolidays;

var holidays = await PublicHolidays.Get();
foreach (var holiday in holidays)
{
    Console.WriteLine($"{holiday.Name} {holiday.Date.ToShortDateString()}");
}
Console.ReadKey();

HolidayDatabase (MasterMemory)

祝日データをMasterMemory(Cysharp/MasterMemory)を使用したインメモリデータベースとして保存・検索できます。

データベースの作成と保存

using JpPublicHolidays;

// APIからダウンロードしてデータベースを作成
var db = await HolidayDatabase.CreateFromApiAsync();

// ファイルに保存
db.Save("holidays.db");

// 既存のHoliday[]から作成することも可能
var holidays = await PublicHolidays.Get();
var dbFromHolidays = HolidayDatabase.Create(holidays);

データベースの読み込み

// ファイルから読み込み
var db = HolidayDatabase.LoadFromFile("holidays.db");

// byte[]から読み込み
var dbFromBytes = HolidayDatabase.LoadFromBytes(data);

日付で検索

// 特定の日付の祝日を取得
var holiday = db.FindByDate(new DateTime(2025, 1, 1));
// holiday.Name => "元日"

// 祝日かどうかを確認
bool isHolidayJan1 = db.IsHoliday(new DateTime(2025, 1, 1)); // true
bool isHolidayJan2 = db.IsHoliday(new DateTime(2025, 1, 2)); // false

// TryFindByDateで安全に取得
if (db.TryFindByDate(new DateTime(2025, 1, 1), out var result))
{
    Console.WriteLine(result.Name);
}

名前で検索

// 名前で検索(複数の結果が返される可能性あり)
var holidays = db.FindByName("元日");
// 2024年と2025年の元日が両方返される

日付範囲で検索

// 日付範囲で検索
var holidays = db.FindByDateRange(
    new DateTime(2025, 5, 1),
    new DateTime(2025, 5, 31));
// 5月のすべての祝日

最も近い祝日を検索

// 指定日以前で最も近い祝日
var closestBefore = db.FindClosestByDate(new DateTime(2025, 2, 1), selectLower: true);

// 指定日以降で最も近い祝日
var closestAfter = db.FindClosestByDate(new DateTime(2025, 2, 1), selectLower: false);

その他のメソッド

// すべての祝日を取得
var all = db.GetAll();

// 祝日の数を取得
int count = db.Count;

Console output

元日 1955/01/01
成人の日 1955/01/15
春分の日 1955/03/21
天皇誕生日 1955/04/29
憲法記念日 1955/05/03
こどもの日 1955/05/05
秋分の日 1955/09/24
文化の日 1955/11/03
勤労感謝の日 1955/11/23
元日 1956/01/01
成人の日 1956/01/15
春分の日 1956/03/21
天皇誕生日 1956/04/29
憲法記念日 1956/05/03
こどもの日 1956/05/05
秋分の日 1956/09/23
文化の日 1956/11/03
勤労感謝の日 1956/11/23
元日 1957/01/01
成人の日 1957/01/15
春分の日 1957/03/21
天皇誕生日 1957/04/29
憲法記念日 1957/05/03
こどもの日 1957/05/05
秋分の日 1957/09/23
文化の日 1957/11/03
勤労感謝の日 1957/11/23
元日 1958/01/01
成人の日 1958/01/15
春分の日 1958/03/21
天皇誕生日 1958/04/29
憲法記念日 1958/05/03
こどもの日 1958/05/05
秋分の日 1958/09/23
文化の日 1958/11/03
勤労感謝の日 1958/11/23
元日 1959/01/01
成人の日 1959/01/15
春分の日 1959/03/21
結婚の儀 1959/04/10
天皇誕生日 1959/04/29
憲法記念日 1959/05/03
こどもの日 1959/05/05
秋分の日 1959/09/24
文化の日 1959/11/03
勤労感謝の日 1959/11/23
元日 1960/01/01
成人の日 1960/01/15
春分の日 1960/03/20
天皇誕生日 1960/04/29
憲法記念日 1960/05/03
こどもの日 1960/05/05
秋分の日 1960/09/23
文化の日 1960/11/03
勤労感謝の日 1960/11/23
元日 1961/01/01
成人の日 1961/01/15
春分の日 1961/03/21
天皇誕生日 1961/04/29
憲法記念日 1961/05/03
こどもの日 1961/05/05
秋分の日 1961/09/23
文化の日 1961/11/03
勤労感謝の日 1961/11/23
元日 1962/01/01
成人の日 1962/01/15
春分の日 1962/03/21
天皇誕生日 1962/04/29
憲法記念日 1962/05/03
こどもの日 1962/05/05
秋分の日 1962/09/23
文化の日 1962/11/03
勤労感謝の日 1962/11/23
元日 1963/01/01
成人の日 1963/01/15
春分の日 1963/03/21
天皇誕生日 1963/04/29
憲法記念日 1963/05/03
こどもの日 1963/05/05
秋分の日 1963/09/24
文化の日 1963/11/03
勤労感謝の日 1963/11/23
元日 1964/01/01
成人の日 1964/01/15
春分の日 1964/03/20
天皇誕生日 1964/04/29
憲法記念日 1964/05/03
こどもの日 1964/05/05
秋分の日 1964/09/23
文化の日 1964/11/03
勤労感謝の日 1964/11/23
元日 1965/01/01
成人の日 1965/01/15
春分の日 1965/03/21
天皇誕生日 1965/04/29
憲法記念日 1965/05/03
こどもの日 1965/05/05
秋分の日 1965/09/23
文化の日 1965/11/03
勤労感謝の日 1965/11/23
元日 1966/01/01
成人の日 1966/01/15
春分の日 1966/03/21
天皇誕生日 1966/04/29
憲法記念日 1966/05/03
こどもの日 1966/05/05
敬老の日 1966/09/15
秋分の日 1966/09/23
体育の日 1966/10/10
文化の日 1966/11/03
勤労感謝の日 1966/11/23
元日 1967/01/01
成人の日 1967/01/15
建国記念の日 1967/02/11
春分の日 1967/03/21
天皇誕生日 1967/04/29
憲法記念日 1967/05/03
こどもの日 1967/05/05
敬老の日 1967/09/15
秋分の日 1967/09/24
体育の日 1967/10/10
文化の日 1967/11/03
勤労感謝の日 1967/11/23
元日 1968/01/01
成人の日 1968/01/15
建国記念の日 1968/02/11
春分の日 1968/03/20
天皇誕生日 1968/04/29
憲法記念日 1968/05/03
こどもの日 1968/05/05
敬老の日 1968/09/15
秋分の日 1968/09/23
体育の日 1968/10/10
文化の日 1968/11/03
勤労感謝の日 1968/11/23
元日 1969/01/01
成人の日 1969/01/15
建国記念の日 1969/02/11
春分の日 1969/03/21
天皇誕生日 1969/04/29
憲法記念日 1969/05/03
こどもの日 1969/05/05
敬老の日 1969/09/15
秋分の日 1969/09/23
体育の日 1969/10/10
文化の日 1969/11/03
勤労感謝の日 1969/11/23
元日 1970/01/01
成人の日 1970/01/15
建国記念の日 1970/02/11
春分の日 1970/03/21
天皇誕生日 1970/04/29
憲法記念日 1970/05/03
こどもの日 1970/05/05
敬老の日 1970/09/15
秋分の日 1970/09/23
体育の日 1970/10/10
文化の日 1970/11/03
勤労感謝の日 1970/11/23
元日 1971/01/01
成人の日 1971/01/15
建国記念の日 1971/02/11
春分の日 1971/03/21
天皇誕生日 1971/04/29
憲法記念日 1971/05/03
こどもの日 1971/05/05
敬老の日 1971/09/15
秋分の日 1971/09/24
体育の日 1971/10/10
文化の日 1971/11/03
勤労感謝の日 1971/11/23
元日 1972/01/01
成人の日 1972/01/15
建国記念の日 1972/02/11
春分の日 1972/03/20
天皇誕生日 1972/04/29
憲法記念日 1972/05/03
こどもの日 1972/05/05
敬老の日 1972/09/15
秋分の日 1972/09/23
体育の日 1972/10/10
文化の日 1972/11/03
勤労感謝の日 1972/11/23
元日 1973/01/01
成人の日 1973/01/15
建国記念の日 1973/02/11
春分の日 1973/03/21
天皇誕生日 1973/04/29
休日 1973/04/30
憲法記念日 1973/05/03
こどもの日 1973/05/05
敬老の日 1973/09/15
秋分の日 1973/09/23
休日 1973/09/24
体育の日 1973/10/10
文化の日 1973/11/03
勤労感謝の日 1973/11/23
元日 1974/01/01
成人の日 1974/01/15
建国記念の日 1974/02/11
春分の日 1974/03/21
天皇誕生日 1974/04/29
憲法記念日 1974/05/03
こどもの日 1974/05/05
休日 1974/05/06
敬老の日 1974/09/15
休日 1974/09/16
秋分の日 1974/09/23
体育の日 1974/10/10
文化の日 1974/11/03
休日 1974/11/04
勤労感謝の日 1974/11/23
元日 1975/01/01
成人の日 1975/01/15
建国記念の日 1975/02/11
春分の日 1975/03/21
天皇誕生日 1975/04/29
憲法記念日 1975/05/03
こどもの日 1975/05/05
敬老の日 1975/09/15
秋分の日 1975/09/24
体育の日 1975/10/10
文化の日 1975/11/03
勤労感謝の日 1975/11/23
休日 1975/11/24
元日 1976/01/01
成人の日 1976/01/15
建国記念の日 1976/02/11
春分の日 1976/03/20
天皇誕生日 1976/04/29
憲法記念日 1976/05/03
こどもの日 1976/05/05
敬老の日 1976/09/15
秋分の日 1976/09/23
体育の日 1976/10/10
休日 1976/10/11
文化の日 1976/11/03
勤労感謝の日 1976/11/23
元日 1977/01/01
成人の日 1977/01/15
建国記念の日 1977/02/11
春分の日 1977/03/21
天皇誕生日 1977/04/29
憲法記念日 1977/05/03
こどもの日 1977/05/05
敬老の日 1977/09/15
秋分の日 1977/09/23
体育の日 1977/10/10
文化の日 1977/11/03
勤労感謝の日 1977/11/23
元日 1978/01/01
休日 1978/01/02
成人の日 1978/01/15
休日 1978/01/16
建国記念の日 1978/02/11
春分の日 1978/03/21
天皇誕生日 1978/04/29
憲法記念日 1978/05/03
こどもの日 1978/05/05
敬老の日 1978/09/15
秋分の日 1978/09/23
体育の日 1978/10/10
文化の日 1978/11/03
勤労感謝の日 1978/11/23
元日 1979/01/01
成人の日 1979/01/15
建国記念の日 1979/02/11
休日 1979/02/12
春分の日 1979/03/21
天皇誕生日 1979/04/29
休日 1979/04/30
憲法記念日 1979/05/03
こどもの日 1979/05/05
敬老の日 1979/09/15
秋分の日 1979/09/24
体育の日 1979/10/10
文化の日 1979/11/03
勤労感謝の日 1979/11/23
元日 1980/01/01
成人の日 1980/01/15
建国記念の日 1980/02/11
春分の日 1980/03/20
天皇誕生日 1980/04/29
憲法記念日 1980/05/03
こどもの日 1980/05/05
敬老の日 1980/09/15
秋分の日 1980/09/23
体育の日 1980/10/10
文化の日 1980/11/03
勤労感謝の日 1980/11/23
休日 1980/11/24
元日 1981/01/01
成人の日 1981/01/15
建国記念の日 1981/02/11
春分の日 1981/03/21
天皇誕生日 1981/04/29
憲法記念日 1981/05/03
休日 1981/05/04
こどもの日 1981/05/05
敬老の日 1981/09/15
秋分の日 1981/09/23
体育の日 1981/10/10
文化の日 1981/11/03
勤労感謝の日 1981/11/23
元日 1982/01/01
成人の日 1982/01/15
建国記念の日 1982/02/11
春分の日 1982/03/21
休日 1982/03/22
天皇誕生日 1982/04/29
憲法記念日 1982/05/03
こどもの日 1982/05/05
敬老の日 1982/09/15
秋分の日 1982/09/23
体育の日 1982/10/10
休日 1982/10/11
文化の日 1982/11/03
勤労感謝の日 1982/11/23
元日 1983/01/01
成人の日 1983/01/15
建国記念の日 1983/02/11
春分の日 1983/03/21
天皇誕生日 1983/04/29
憲法記念日 1983/05/03
こどもの日 1983/05/05
敬老の日 1983/09/15
秋分の日 1983/09/23
体育の日 1983/10/10
文化の日 1983/11/03
勤労感謝の日 1983/11/23
元日 1984/01/01
休日 1984/01/02
成人の日 1984/01/15
休日 1984/01/16
建国記念の日 1984/02/11
春分の日 1984/03/20
天皇誕生日 1984/04/29
休日 1984/04/30
憲法記念日 1984/05/03
こどもの日 1984/05/05
敬老の日 1984/09/15
秋分の日 1984/09/23
休日 1984/09/24
体育の日 1984/10/10
文化の日 1984/11/03
勤労感謝の日 1984/11/23
元日 1985/01/01
成人の日 1985/01/15
建国記念の日 1985/02/11
春分の日 1985/03/21
天皇誕生日 1985/04/29
憲法記念日 1985/05/03
こどもの日 1985/05/05
休日 1985/05/06
敬老の日 1985/09/15
休日 1985/09/16
秋分の日 1985/09/23
体育の日 1985/10/10
文化の日 1985/11/03
休日 1985/11/04
勤労感謝の日 1985/11/23
元日 1986/01/01
成人の日 1986/01/15
建国記念の日 1986/02/11
春分の日 1986/03/21
天皇誕生日 1986/04/29
憲法記念日 1986/05/03
こどもの日 1986/05/05
敬老の日 1986/09/15
秋分の日 1986/09/23
体育の日 1986/10/10
文化の日 1986/11/03
勤労感謝の日 1986/11/23
休日 1986/11/24
元日 1987/01/01
成人の日 1987/01/15
建国記念の日 1987/02/11
春分の日 1987/03/21
天皇誕生日 1987/04/29
憲法記念日 1987/05/03
休日 1987/05/04
こどもの日 1987/05/05
敬老の日 1987/09/15
秋分の日 1987/09/23
体育の日 1987/10/10
文化の日 1987/11/03
勤労感謝の日 1987/11/23
元日 1988/01/01
成人の日 1988/01/15
建国記念の日 1988/02/11
春分の日 1988/03/20
休日 1988/03/21
天皇誕生日 1988/04/29
憲法記念日 1988/05/03
休日 1988/05/04
こどもの日 1988/05/05
敬老の日 1988/09/15
秋分の日 1988/09/23
体育の日 1988/10/10
文化の日 1988/11/03
勤労感謝の日 1988/11/23
元日 1989/01/01
休日 1989/01/02
成人の日 1989/01/15
休日 1989/01/16
建国記念の日 1989/02/11
大喪の礼 1989/02/24
春分の日 1989/03/21
みどりの日 1989/04/29
憲法記念日 1989/05/03
休日 1989/05/04
こどもの日 1989/05/05
敬老の日 1989/09/15
秋分の日 1989/09/23
体育の日 1989/10/10
文化の日 1989/11/03
勤労感謝の日 1989/11/23
天皇誕生日 1989/12/23
元日 1990/01/01
成人の日 1990/01/15
建国記念の日 1990/02/11
休日 1990/02/12
春分の日 1990/03/21
みどりの日 1990/04/29
休日 1990/04/30
憲法記念日 1990/05/03
休日 1990/05/04
こどもの日 1990/05/05
敬老の日 1990/09/15
秋分の日 1990/09/23
休日 1990/09/24
体育の日 1990/10/10
文化の日 1990/11/03
即位礼正殿の儀 1990/11/12
勤労感謝の日 1990/11/23
天皇誕生日 1990/12/23
休日 1990/12/24
元日 1991/01/01
成人の日 1991/01/15
建国記念の日 1991/02/11
春分の日 1991/03/21
みどりの日 1991/04/29
憲法記念日 1991/05/03
休日 1991/05/04
こどもの日 1991/05/05
休日 1991/05/06
敬老の日 1991/09/15
休日 1991/09/16
秋分の日 1991/09/23
体育の日 1991/10/10
文化の日 1991/11/03
休日 1991/11/04
勤労感謝の日 1991/11/23
天皇誕生日 1991/12/23
元日 1992/01/01
成人の日 1992/01/15
建国記念の日 1992/02/11
春分の日 1992/03/20
みどりの日 1992/04/29
憲法記念日 1992/05/03
休日 1992/05/04
こどもの日 1992/05/05
敬老の日 1992/09/15
秋分の日 1992/09/23
体育の日 1992/10/10
文化の日 1992/11/03
勤労感謝の日 1992/11/23
天皇誕生日 1992/12/23
元日 1993/01/01
成人の日 1993/01/15
建国記念の日 1993/02/11
春分の日 1993/03/20
みどりの日 1993/04/29
憲法記念日 1993/05/03
休日 1993/05/04
こどもの日 1993/05/05
結婚の儀 1993/06/09
敬老の日 1993/09/15
秋分の日 1993/09/23
体育の日 1993/10/10
休日 1993/10/11
文化の日 1993/11/03
勤労感謝の日 1993/11/23
天皇誕生日 1993/12/23
元日 1994/01/01
成人の日 1994/01/15
建国記念の日 1994/02/11
春分の日 1994/03/21
みどりの日 1994/04/29
憲法記念日 1994/05/03
休日 1994/05/04
こどもの日 1994/05/05
敬老の日 1994/09/15
秋分の日 1994/09/23
体育の日 1994/10/10
文化の日 1994/11/03
勤労感謝の日 1994/11/23
天皇誕生日 1994/12/23
元日 1995/01/01
休日 1995/01/02
成人の日 1995/01/15
休日 1995/01/16
建国記念の日 1995/02/11
春分の日 1995/03/21
みどりの日 1995/04/29
憲法記念日 1995/05/03
休日 1995/05/04
こどもの日 1995/05/05
敬老の日 1995/09/15
秋分の日 1995/09/23
体育の日 1995/10/10
文化の日 1995/11/03
勤労感謝の日 1995/11/23
天皇誕生日 1995/12/23
元日 1996/01/01
成人の日 1996/01/15
建国記念の日 1996/02/11
休日 1996/02/12
春分の日 1996/03/20
みどりの日 1996/04/29
憲法記念日 1996/05/03
休日 1996/05/04
こどもの日 1996/05/05
休日 1996/05/06
海の日 1996/07/20
敬老の日 1996/09/15
休日 1996/09/16
秋分の日 1996/09/23
体育の日 1996/10/10
文化の日 1996/11/03
休日 1996/11/04
勤労感謝の日 1996/11/23
天皇誕生日 1996/12/23
元日 1997/01/01
成人の日 1997/01/15
建国記念の日 1997/02/11
春分の日 1997/03/20
みどりの日 1997/04/29
憲法記念日 1997/05/03
こどもの日 1997/05/05
海の日 1997/07/20
休日 1997/07/21
敬老の日 1997/09/15
秋分の日 1997/09/23
体育の日 1997/10/10
文化の日 1997/11/03
勤労感謝の日 1997/11/23
休日 1997/11/24
天皇誕生日 1997/12/23
元日 1998/01/01
成人の日 1998/01/15
建国記念の日 1998/02/11
春分の日 1998/03/21
みどりの日 1998/04/29
憲法記念日 1998/05/03
休日 1998/05/04
こどもの日 1998/05/05
海の日 1998/07/20
敬老の日 1998/09/15
秋分の日 1998/09/23
体育の日 1998/10/10
文化の日 1998/11/03
勤労感謝の日 1998/11/23
天皇誕生日 1998/12/23
元日 1999/01/01
成人の日 1999/01/15
建国記念の日 1999/02/11
春分の日 1999/03/21
休日 1999/03/22
みどりの日 1999/04/29
憲法記念日 1999/05/03
休日 1999/05/04
こどもの日 1999/05/05
海の日 1999/07/20
敬老の日 1999/09/15
秋分の日 1999/09/23
体育の日 1999/10/10
休日 1999/10/11
文化の日 1999/11/03
勤労感謝の日 1999/11/23
天皇誕生日 1999/12/23
元日 2000/01/01
成人の日 2000/01/10
建国記念の日 2000/02/11
春分の日 2000/03/20
みどりの日 2000/04/29
憲法記念日 2000/05/03
休日 2000/05/04
こどもの日 2000/05/05
海の日 2000/07/20
敬老の日 2000/09/15
秋分の日 2000/09/23
体育の日 2000/10/09
文化の日 2000/11/03
勤労感謝の日 2000/11/23
天皇誕生日 2000/12/23
元日 2001/01/01
成人の日 2001/01/08
建国記念の日 2001/02/11
休日 2001/02/12
春分の日 2001/03/20
みどりの日 2001/04/29
休日 2001/04/30
憲法記念日 2001/05/03
休日 2001/05/04
こどもの日 2001/05/05
海の日 2001/07/20
敬老の日 2001/09/15
秋分の日 2001/09/23
休日 2001/09/24
体育の日 2001/10/08
文化の日 2001/11/03
勤労感謝の日 2001/11/23
天皇誕生日 2001/12/23
休日 2001/12/24
元日 2002/01/01
成人の日 2002/01/14
建国記念の日 2002/02/11
春分の日 2002/03/21
みどりの日 2002/04/29
憲法記念日 2002/05/03
休日 2002/05/04
こどもの日 2002/05/05
休日 2002/05/06
海の日 2002/07/20
敬老の日 2002/09/15
休日 2002/09/16
秋分の日 2002/09/23
体育の日 2002/10/14
文化の日 2002/11/03
休日 2002/11/04
勤労感謝の日 2002/11/23
天皇誕生日 2002/12/23
元日 2003/01/01
成人の日 2003/01/13
建国記念の日 2003/02/11
春分の日 2003/03/21
みどりの日 2003/04/29
憲法記念日 2003/05/03
こどもの日 2003/05/05
海の日 2003/07/21
敬老の日 2003/09/15
秋分の日 2003/09/23
体育の日 2003/10/13
文化の日 2003/11/03
勤労感謝の日 2003/11/23
休日 2003/11/24
天皇誕生日 2003/12/23
元日 2004/01/01
成人の日 2004/01/12
建国記念の日 2004/02/11
春分の日 2004/03/20
みどりの日 2004/04/29
憲法記念日 2004/05/03
休日 2004/05/04
こどもの日 2004/05/05
海の日 2004/07/19
敬老の日 2004/09/20
秋分の日 2004/09/23
体育の日 2004/10/11
文化の日 2004/11/03
勤労感謝の日 2004/11/23
天皇誕生日 2004/12/23
元日 2005/01/01
成人の日 2005/01/10
建国記念の日 2005/02/11
春分の日 2005/03/20
休日 2005/03/21
みどりの日 2005/04/29
憲法記念日 2005/05/03
休日 2005/05/04
こどもの日 2005/05/05
海の日 2005/07/18
敬老の日 2005/09/19
秋分の日 2005/09/23
体育の日 2005/10/10
文化の日 2005/11/03
勤労感謝の日 2005/11/23
天皇誕生日 2005/12/23
元日 2006/01/01
休日 2006/01/02
成人の日 2006/01/09
建国記念の日 2006/02/11
春分の日 2006/03/21
みどりの日 2006/04/29
憲法記念日 2006/05/03
休日 2006/05/04
こどもの日 2006/05/05
海の日 2006/07/17
敬老の日 2006/09/18
秋分の日 2006/09/23
体育の日 2006/10/09
文化の日 2006/11/03
勤労感謝の日 2006/11/23
天皇誕生日 2006/12/23
元日 2007/01/01
成人の日 2007/01/08
建国記念の日 2007/02/11
休日 2007/02/12
春分の日 2007/03/21
昭和の日 2007/04/29
休日 2007/04/30
憲法記念日 2007/05/03
みどりの日 2007/05/04
こどもの日 2007/05/05
海の日 2007/07/16
敬老の日 2007/09/17
秋分の日 2007/09/23
休日 2007/09/24
体育の日 2007/10/08
文化の日 2007/11/03
勤労感謝の日 2007/11/23
天皇誕生日 2007/12/23
休日 2007/12/24
元日 2008/01/01
成人の日 2008/01/14
建国記念の日 2008/02/11
春分の日 2008/03/20
昭和の日 2008/04/29
憲法記念日 2008/05/03
みどりの日 2008/05/04
こどもの日 2008/05/05
休日 2008/05/06
海の日 2008/07/21
敬老の日 2008/09/15
秋分の日 2008/09/23
体育の日 2008/10/13
文化の日 2008/11/03
勤労感謝の日 2008/11/23
休日 2008/11/24
天皇誕生日 2008/12/23
元日 2009/01/01
成人の日 2009/01/12
建国記念の日 2009/02/11
春分の日 2009/03/20
昭和の日 2009/04/29
憲法記念日 2009/05/03
みどりの日 2009/05/04
こどもの日 2009/05/05
休日 2009/05/06
海の日 2009/07/20
敬老の日 2009/09/21
休日 2009/09/22
秋分の日 2009/09/23
体育の日 2009/10/12
文化の日 2009/11/03
勤労感謝の日 2009/11/23
天皇誕生日 2009/12/23
元日 2010/01/01
成人の日 2010/01/11
建国記念の日 2010/02/11
春分の日 2010/03/21
休日 2010/03/22
昭和の日 2010/04/29
憲法記念日 2010/05/03
みどりの日 2010/05/04
こどもの日 2010/05/05
海の日 2010/07/19
敬老の日 2010/09/20
秋分の日 2010/09/23
体育の日 2010/10/11
文化の日 2010/11/03
勤労感謝の日 2010/11/23
天皇誕生日 2010/12/23
元日 2011/01/01
成人の日 2011/01/10
建国記念の日 2011/02/11
春分の日 2011/03/21
昭和の日 2011/04/29
憲法記念日 2011/05/03
みどりの日 2011/05/04
こどもの日 2011/05/05
海の日 2011/07/18
敬老の日 2011/09/19
秋分の日 2011/09/23
体育の日 2011/10/10
文化の日 2011/11/03
勤労感謝の日 2011/11/23
天皇誕生日 2011/12/23
元日 2012/01/01
休日 2012/01/02
成人の日 2012/01/09
建国記念の日 2012/02/11
春分の日 2012/03/20
昭和の日 2012/04/29
休日 2012/04/30
憲法記念日 2012/05/03
みどりの日 2012/05/04
こどもの日 2012/05/05
海の日 2012/07/16
敬老の日 2012/09/17
秋分の日 2012/09/22
体育の日 2012/10/08
文化の日 2012/11/03
勤労感謝の日 2012/11/23
天皇誕生日 2012/12/23
休日 2012/12/24
元日 2013/01/01
成人の日 2013/01/14
建国記念の日 2013/02/11
春分の日 2013/03/20
昭和の日 2013/04/29
憲法記念日 2013/05/03
みどりの日 2013/05/04
こどもの日 2013/05/05
休日 2013/05/06
海の日 2013/07/15
敬老の日 2013/09/16
秋分の日 2013/09/23
体育の日 2013/10/14
文化の日 2013/11/03
休日 2013/11/04
勤労感謝の日 2013/11/23
天皇誕生日 2013/12/23
元日 2014/01/01
成人の日 2014/01/13
建国記念の日 2014/02/11
春分の日 2014/03/21
昭和の日 2014/04/29
憲法記念日 2014/05/03
みどりの日 2014/05/04
こどもの日 2014/05/05
休日 2014/05/06
海の日 2014/07/21
敬老の日 2014/09/15
秋分の日 2014/09/23
体育の日 2014/10/13
文化の日 2014/11/03
勤労感謝の日 2014/11/23
休日 2014/11/24
天皇誕生日 2014/12/23
元日 2015/01/01
成人の日 2015/01/12
建国記念の日 2015/02/11
春分の日 2015/03/21
昭和の日 2015/04/29
憲法記念日 2015/05/03
みどりの日 2015/05/04
こどもの日 2015/05/05
休日 2015/05/06
海の日 2015/07/20
敬老の日 2015/09/21
休日 2015/09/22
秋分の日 2015/09/23
体育の日 2015/10/12
文化の日 2015/11/03
勤労感謝の日 2015/11/23
天皇誕生日 2015/12/23
元日 2016/01/01
成人の日 2016/01/11
建国記念の日 2016/02/11
春分の日 2016/03/20
休日 2016/03/21
昭和の日 2016/04/29
憲法記念日 2016/05/03
みどりの日 2016/05/04
こどもの日 2016/05/05
海の日 2016/07/18
山の日 2016/08/11
敬老の日 2016/09/19
秋分の日 2016/09/22
体育の日 2016/10/10
文化の日 2016/11/03
勤労感謝の日 2016/11/23
天皇誕生日 2016/12/23
元日 2017/01/01
休日 2017/01/02
成人の日 2017/01/09
建国記念の日 2017/02/11
春分の日 2017/03/20
昭和の日 2017/04/29
憲法記念日 2017/05/03
みどりの日 2017/05/04
こどもの日 2017/05/05
海の日 2017/07/17
山の日 2017/08/11
敬老の日 2017/09/18
秋分の日 2017/09/23
体育の日 2017/10/09
文化の日 2017/11/03
勤労感謝の日 2017/11/23
天皇誕生日 2017/12/23
元日 2018/01/01
成人の日 2018/01/08
建国記念の日 2018/02/11
休日 2018/02/12
春分の日 2018/03/21
昭和の日 2018/04/29
休日 2018/04/30
憲法記念日 2018/05/03
みどりの日 2018/05/04
こどもの日 2018/05/05
海の日 2018/07/16
山の日 2018/08/11
敬老の日 2018/09/17
秋分の日 2018/09/23
休日 2018/09/24
体育の日 2018/10/08
文化の日 2018/11/03
勤労感謝の日 2018/11/23
天皇誕生日 2018/12/23
休日 2018/12/24
元日 2019/01/01
成人の日 2019/01/14
建国記念の日 2019/02/11
春分の日 2019/03/21
昭和の日 2019/04/29
休日 2019/04/30
休日(祝日扱い) 2019/05/01
休日 2019/05/02
憲法記念日 2019/05/03
みどりの日 2019/05/04
こどもの日 2019/05/05
休日 2019/05/06
海の日 2019/07/15
山の日 2019/08/11
休日 2019/08/12
敬老の日 2019/09/16
秋分の日 2019/09/23
体育の日(スポーツの日) 2019/10/14
休日(祝日扱い) 2019/10/22
文化の日 2019/11/03
休日 2019/11/04
勤労感謝の日 2019/11/23
元日 2020/01/01
成人の日 2020/01/13
建国記念の日 2020/02/11
天皇誕生日 2020/02/23
休日 2020/02/24
春分の日 2020/03/20
昭和の日 2020/04/29
憲法記念日 2020/05/03
みどりの日 2020/05/04
こどもの日 2020/05/05
休日 2020/05/06
海の日 2020/07/23
スポーツの日 2020/07/24
山の日 2020/08/10
敬老の日 2020/09/21
秋分の日 2020/09/22
文化の日 2020/11/03
勤労感謝の日 2020/11/23
元日 2021/01/01
成人の日 2021/01/11
建国記念の日 2021/02/11
天皇誕生日 2021/02/23
春分の日 2021/03/20
昭和の日 2021/04/29
憲法記念日 2021/05/03
みどりの日 2021/05/04
こどもの日 2021/05/05
海の日 2021/07/22
スポーツの日 2021/07/23
山の日 2021/08/08
休日 2021/08/09
敬老の日 2021/09/20
秋分の日 2021/09/23
文化の日 2021/11/03
勤労感謝の日 2021/11/23
元日 2022/01/01
成人の日 2022/01/10
建国記念の日 2022/02/11
天皇誕生日 2022/02/23
春分の日 2022/03/21
昭和の日 2022/04/29
憲法記念日 2022/05/03
みどりの日 2022/05/04
こどもの日 2022/05/05
海の日 2022/07/18
山の日 2022/08/11
敬老の日 2022/09/19
秋分の日 2022/09/23
スポーツの日 2022/10/10
文化の日 2022/11/03
勤労感謝の日 2022/11/23
元日 2023/01/01
休日 2023/01/02
成人の日 2023/01/09
建国記念の日 2023/02/11
天皇誕生日 2023/02/23
春分の日 2023/03/21
昭和の日 2023/04/29
憲法記念日 2023/05/03
みどりの日 2023/05/04
こどもの日 2023/05/05
海の日 2023/07/17
山の日 2023/08/11
敬老の日 2023/09/18
秋分の日 2023/09/23
スポーツの日 2023/10/09
文化の日 2023/11/03
勤労感謝の日 2023/11/23
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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
2.7.0 1,114 12/4/2025
2.6.0 386 5/16/2025
2.5.0 524 9/15/2023
2.4.0 654 3/21/2021
2.3.0 939 6/9/2019
2.2.0 972 12/21/2018
2.1.0 1,614 1/24/2018
2.0.0 1,653 12/28/2017
1.0.3 1,947 8/7/2017
1.0.2 1,425 2/24/2017
1.0.1 1,413 2/24/2017
1.0.0 1,322 2/24/2017

Support local Database file