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 diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index 4def06b..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: 6.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 5d650e2..54aaace 100644 --- a/DirectSQL/DirectSQL.csproj +++ b/DirectSQL/DirectSQL.csproj @@ -1,9 +1,9 @@  - net6.0 + net8.0 true - 3.11.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/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj index df205d8..cd44017 100644 --- a/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj +++ b/TestSqlLiteDatabase/TestSqlLiteDatabase.csproj @@ -1,7 +1,7 @@ - net6.0 + 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 +}