From 7f026d809e4d2e849c3d7eeb0ee940b2932c56f7 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sat, 24 Jul 2021 22:11:58 +0900 Subject: [PATCH 01/16] Commit to trigger build From 61f4c0335ada7b1dfcf4e5a007405c4beadb41b4 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Tue, 9 Nov 2021 22:22:20 +0900 Subject: [PATCH 02/16] Bumped to 3.12.0 --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 5d650e2..04f1b2b 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -3,7 +3,7 @@ net6.0 true - 3.11.0 + 3.12.0 LICENSE https://github.com/DirectSQL/DirectSQL/ From b6c441e3cba5c0fc12c953560842f30178fed1b5 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 19 May 2022 21:33:01 +0900 Subject: [PATCH 03/16] Update net in global.json to 6.0.100 --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index 7abee74..126149e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "5.0.100", + "version": "6.0.100", "rollForward": "latestMajor" } -} \ No newline at end of file +} From f0e4847cbc2b0fb48d8be7e4b21de09f47781f25 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Fri, 20 May 2022 23:10:01 +0900 Subject: [PATCH 04/16] upgrade version of codeql to v2 --- .github/workflows/codeql-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4fc9244..0c36c50 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -59,4 +59,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From 6c0b80ab028feda2626b0007ea1b4ae0cd2bcfa4 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Fri, 11 Nov 2022 20:21:01 +0900 Subject: [PATCH 05/16] Update Microsoft.Data.SqlClient to 2.1.2 --- DirectSQL/DatabaseDictionary.cs | 12 ++++++++++++ DirectSQL/DirectSQL.csproj | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 DirectSQL/DatabaseDictionary.cs diff --git a/DirectSQL/DatabaseDictionary.cs b/DirectSQL/DatabaseDictionary.cs new file mode 100644 index 0000000..95ccd52 --- /dev/null +++ b/DirectSQL/DatabaseDictionary.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DirectSQL +{ + internal class DatabaseDictionary + { + } +} diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 04f1b2b..690439f 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -17,7 +17,7 @@ This .NET library is very thin database framework on top of System.Data. - + From 37ccd6493d7dfb78b5066b1212519c3c4b3cb414 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Fri, 11 Nov 2022 20:22:37 +0900 Subject: [PATCH 06/16] Labeled 3.13.0 --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 690439f..491f42e 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -3,7 +3,7 @@ net6.0 true - 3.12.0 + 3.13.0 LICENSE https://github.com/DirectSQL/DirectSQL/ From 62575d73c5371c1f7c659a49bb3bb591a05e475a Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sun, 20 Nov 2022 12:22:43 +0900 Subject: [PATCH 07/16] Update dotnetcore.yml Update to dotnet7 --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 4def06b..0e9349d 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -12,7 +12,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 6.0.100 + dotnet-version: 7.0.100 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From baac33dcb179f9d5c5f8070bf71ee4c5484097b7 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sun, 20 Nov 2022 12:26:55 +0900 Subject: [PATCH 08/16] Updated project target to net7.0 --- DirectSQL/DirectSQL.csproj | 2 +- TestSqlLiteDatabase/TestSqlLiteDatabase.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 491f42e..1ce362a 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -1,7 +1,7 @@  - net6.0 + net7.0 true 3.13.0 diff --git a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj index df205d8..f5ecf13 100644 --- a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj +++ b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 false From ec9a63cea5184cbc6ae466516faf7cdd41e221ac Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sun, 20 Nov 2022 12:31:26 +0900 Subject: [PATCH 09/16] Updated sdk version in global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 126149e..e23437b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.100", + "version": "7.0.100", "rollForward": "latestMajor" } } From 9a9d584aecd48bc47b61db50709c46d10adef1be Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sun, 20 Nov 2022 12:35:40 +0900 Subject: [PATCH 10/16] Update DirectSQL.csproj Labled to 3.14.0 --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 1ce362a..067271f 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -3,7 +3,7 @@ net7.0 true - 3.13.0 + 3.14.0 LICENSE https://github.com/DirectSQL/DirectSQL/ From 88dc9b4a5492df78a773808d37afddca2f3ec3bc Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 20:58:53 +0900 Subject: [PATCH 11/16] Update dotnetcore.yml Update dotnet-version to 8.0.0 --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 0e9349d..00cd0a4 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -12,7 +12,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.100 + dotnet-version: 8.0.0 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 55701bea7c0bd8c495fd2606e0e17ee6976252be Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 21:00:00 +0900 Subject: [PATCH 12/16] Update dotnetcore.yml 8.0.000 --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 00cd0a4..4e2860c 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -12,7 +12,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.0.0 + dotnet-version: 8.0.000 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 7078e42feafb935f0de8655262106ad8422a2dfe Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 21:01:58 +0900 Subject: [PATCH 13/16] Update dotnetcore.yml 8.0.100 --- .github/workflows/dotnetcore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 4e2860c..10d68f7 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -12,7 +12,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 8.0.000 + dotnet-version: 8.0.100 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 0354225691d679ad64a04a62011af864c5e57364 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 21:03:56 +0900 Subject: [PATCH 14/16] Update TestSqlLiteDatabase.csproj net8.0 in TestSqlLiteDatabase --- TestSqlLiteDatabase/TestSqlLiteDatabase.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj index f5ecf13..cd44017 100644 --- a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj +++ b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 false From 8cc020c89332c800766f13c916c29d40bc886f20 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 21:04:27 +0900 Subject: [PATCH 15/16] Update DirectSQL.csproj net8.0 for DirectSQL.csproj --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 067271f..5c57802 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 true 3.14.0 From fa267ebe1b4c797b0984db44098302e13ff101c9 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 30 Nov 2023 21:06:11 +0900 Subject: [PATCH 16/16] Update DirectSQL.csproj Package version to 3.15.0 --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 5c57802..54aaace 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -3,7 +3,7 @@ net8.0 true - 3.14.0 + 3.15.0 LICENSE https://github.com/DirectSQL/DirectSQL/ pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy