diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3c63d81..0c36c50 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] @@ -59,4 +59,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 80dd223..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: 5.0.100 + dotnet-version: 8.0.100 source-url: https://nuget.pkg.github.com/directsql/index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} 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 eb549fa..54aaace 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -1,9 +1,9 @@  - net5.0 + net8.0 true - 3.10.0 + 3.15.0 LICENSE https://github.com/DirectSQL/DirectSQL/ @@ -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 { diff --git a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj index be30cb2..cd44017 100644 --- a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj +++ b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj @@ -1,7 +1,7 @@ - net5 + net8.0 false diff --git a/global.json b/global.json index 7abee74..e23437b 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "5.0.100", + "version": "7.0.100", "rollForward": "latestMajor" } -} \ No newline at end of file +}