cache nuget packages

This commit is contained in:
master
2025-11-17 20:46:40 +02:00
parent 833e68575a
commit d3128aec24
3344 changed files with 5325703 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
"version": 2,
"contentHash": "1UzHTgzXzAdbr7wt7RPduP+rzwviX01ldlQP9zNIq2vI4yEUmDaR7+7sAMPIZvv8NsIbUdJDo47H40RcLeL5pg==",
"source": "https://api.nuget.org/v3/index.json"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata minClientVersion="3.6">
<id>Microsoft.Data.Sqlite</id>
<version>9.0.0-rc.1.24451.1</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>Icon.png</icon>
<readme>PACKAGE.md</readme>
<projectUrl>https://docs.microsoft.com/dotnet/standard/data/sqlite/</projectUrl>
<description>Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite.
Commonly Used Types:
Microsoft.Data.Sqlite.SqliteCommand
Microsoft.Data.Sqlite.SqliteConnection
Microsoft.Data.Sqlite.SqliteConnectionStringBuilder
Microsoft.Data.Sqlite.SqliteDataReader
Microsoft.Data.Sqlite.SqliteException
Microsoft.Data.Sqlite.SqliteFactory
Microsoft.Data.Sqlite.SqliteParameter
Microsoft.Data.Sqlite.SqliteTransaction</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>SQLite Data ADO.NET</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/dotnet/efcore" commit="740edc6f5e40ba591f8e4f9a886e02abe5668c89" />
<dependencies>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Data.Sqlite.Core" version="9.0.0-rc.1.24451.1" exclude="Build,Analyzers" />
<dependency id="SQLitePCLRaw.bundle_e_sqlite3" version="2.1.8" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
</package>

View File

@@ -0,0 +1,34 @@
`Microsoft.Data.Sqlite` is a lightweight [ADO.NET provider]([ADO.NET](https://docs.microsoft.com/dotnet/framework/data/adonet/)) for [SQLite](https://www.sqlite.org/index.html). The EF Core provider for SQLite is built on top of this library. However, it can also be used independently or with other data access libraries.
### Installation
The latest stable version is available on [NuGet](https://www.nuget.org/packages/Microsoft.Data.Sqlite).
```sh
dotnet add package Microsoft.Data.Sqlite
```
Use the `--version` option to specify a [preview version](https://www.nuget.org/packages/Microsoft.Data.Sqlite/absoluteLatest) to install.
### Basic usage
This library implements the common [ADO.NET](https://docs.microsoft.com/dotnet/framework/data/adonet/) abstractions for connections, commands, data readers, and so on. For more information, see [Microsoft.Data.Sqlite](https://docs.microsoft.com/dotnet/standard/data/sqlite/) on Microsoft Docs.
```cs
using var connection = new SqliteConnection("Data Source=Blogs.db");
connection.Open();
using var command = connection.CreateCommand();
command.CommandText = "SELECT Url FROM Blogs";
using var reader = command.ExecuteReader();
while (reader.Read())
{
var url = reader.GetString(0);
}
```
### Getting support
If you have a specific question about using these projects, we encourage you to [ask it on Stack Overflow](https://stackoverflow.com/questions/tagged/microsoft.data.sqlite). If you encounter a bug or would like to request a feature, [submit an issue](https://github.com/dotnet/efcore/issues/new/choose). For more details, see [getting support](.github/SUPPORT.md).

View File

@@ -0,0 +1 @@
cl5FFr3+1/Sc4uoXKe2nUxNpIe9pIDQZCYuHiKFDNZhKA+Yow5fJdWWrMD4CP1+q+sqPQ3i881HbsUmH0m4bgg==