From 40b6a3c73d1204f937684af22a946741436c24a4 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Tue, 17 Nov 2020 22:38:30 +0900 Subject: [PATCH 01/23] Removed on push fixCodeQLError not needed anymore --- .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 3c63d81..4fc9244 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -2,7 +2,7 @@ name: "CodeQL" on: push: - branches: [main,fixCodeQLError] + branches: [main] pull_request: # The branches below must be a subset of the branches above branches: [main] From c5f2ae5e12667896cb7ab8d13194b5df9d45ed07 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sat, 21 Nov 2020 16:04:56 +0900 Subject: [PATCH 02/23] Switch Data Provider for SQLServer to Microsoft.Data.SqlClient from System.Data.SqlClient --- DirectSQL/DirectSQL.csproj | 2 +- DirectSQL/SqlServer/SqlServerDatabase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index eb549fa..99a5995 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. - + diff --git a/DirectSQL/SqlServer/SqlServerDatabase.cs b/DirectSQL/SqlServer/SqlServerDatabase.cs index 9a346a6..40e85b8 100644 --- a/DirectSQL/SqlServer/SqlServerDatabase.cs +++ b/DirectSQL/SqlServer/SqlServerDatabase.cs @@ -1,6 +1,6 @@ using System; -using System.Data.SqlClient; +using Microsoft.Data.SqlClient; namespace DirectSQL.SqlServer { From e52ed7997715946173af1b9d3be01110421e81a1 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sat, 21 Nov 2020 16:08:00 +0900 Subject: [PATCH 03/23] Versioned 3.11.0 --- DirectSQL/DirectSQL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DirectSQL/DirectSQL.csproj b/DirectSQL/DirectSQL.csproj index 99a5995..da92275 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -3,7 +3,7 @@ net5.0 true - 3.10.0 + 3.11.0 LICENSE https://github.com/DirectSQL/DirectSQL/ From 3288bd60620d7e7c9850e5cdd2a781a00f6e86dc Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 25 Feb 2021 18:07:56 +0900 Subject: [PATCH 04/23] Update target to net6.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 da92275..5d650e2 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -1,7 +1,7 @@  - net5.0 + net6.0 true 3.11.0 diff --git a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj index be30cb2..df205d8 100644 --- a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj +++ b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj @@ -1,7 +1,7 @@ - net5 + net6.0 false From ea862e6c2cc45c64b2b58cb8e306d4d92b85afec Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 25 Feb 2021 18:15:36 +0900 Subject: [PATCH 05/23] Update dotnetcore.yml to net6 preview --- .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 80dd223..4c0bfd0 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: 5.0.100 + dotnet-version: 6.0.100-preview source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 89f15292ec39cb340cf91e6303ddb9bd9e241171 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Thu, 25 Feb 2021 18:24:04 +0900 Subject: [PATCH 06/23] Added .1.21103.13 to net6 version in dotnetcore.yml --- .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 4c0bfd0..4ac4073 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-preview + dotnet-version: 6.0.100-preview.1.21103.13 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 7f026d809e4d2e849c3d7eeb0ee940b2932c56f7 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Sat, 24 Jul 2021 22:11:58 +0900 Subject: [PATCH 07/23] Commit to trigger build From 9cd54a5a292754b88429bf96ed7bedc4cef82287 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Tue, 9 Nov 2021 22:17:13 +0900 Subject: [PATCH 08/23] Removed preview --- .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 4ac4073..4def06b 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-preview.1.21103.13 + dotnet-version: 6.0.100 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 61f4c0335ada7b1dfcf4e5a007405c4beadb41b4 Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Tue, 9 Nov 2021 22:22:20 +0900 Subject: [PATCH 09/23] 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 10/23] 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 11/23] 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 12/23] 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 13/23] 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 14/23] 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 15/23] 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 16/23] 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 17/23] 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 18/23] 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 19/23] 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 20/23] 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 21/23] 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 22/23] 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 23/23] 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