Skip to content

Commit bcf528d

Browse files
committed
v0.1.4
1 parent 4cb66a3 commit bcf528d

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ In scenarios where multiple write operations occur simultaneously, especially in
2929
- **`System.Data.SQLite.SQLiteDbConverter`**: Base class for applying updates to the SQLite database schema.
3030
- **`System.Data.SQLite.SQLiteDbTransaction`**: Provides methods for managing SQLite transactions.
3131

32+
### Installation
33+
34+
You can install `NuExt.System.Data.SQLite` via [NuGet](https://www.nuget.org/):
35+
36+
```sh
37+
dotnet add package NuExt.System.Data.SQLite
38+
```
39+
40+
Or through the Visual Studio package manager:
41+
42+
1. Go to `Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution...`.
43+
2. Search for `NuExt.System.Data.SQLite`.
44+
3. Click "Install".
45+
3246
### Usage Examples
3347

3448
For examples of how to use these classes, see the [samples](samples). These samples provide practical guidance on implementing the library's features in real-world scenarios.

src/NuExt.System.Data.SQLite.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ System.Data.SQLite.SQLiteDbConnection
1414
System.Data.SQLite.SQLiteDbContext
1515
System.Data.SQLite.SQLiteDbConverter
1616
System.Data.SQLite.SQLiteDbTransaction</Description>
17-
<Version>0.1.3</Version>
17+
<Version>0.1.4</Version>
1818
<RootNamespace />
1919
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2020
<NoWarn>$(NoWarn);1591</NoWarn>
@@ -28,7 +28,7 @@ System.Data.SQLite.SQLiteDbTransaction</Description>
2828
</ItemGroup>
2929

3030
<ItemGroup Condition="'$(UseNuExtPackages)' == 'true'">
31-
<PackageReference Include="NuExt.System.Data" Version="0.1.3" />
31+
<PackageReference Include="NuExt.System.Data" Version="0.1.4" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition="'$(UseNuExtPackages)' == 'false'">

0 commit comments

Comments
 (0)