diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0df619f..3d2d6f3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -36,7 +36,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -65,7 +65,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build @@ -94,7 +94,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/PdfAValidator/PdfAValidator.csproj b/PdfAValidator/PdfAValidator.csproj index b055ebb..f9c3472 100644 --- a/PdfAValidator/PdfAValidator.csproj +++ b/PdfAValidator/PdfAValidator.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 true true https://github.com/Codeuctivity/PdfAValidatorApi diff --git a/PdfAValidatorTest/PdfAValidatorTest.csproj b/PdfAValidatorTest/PdfAValidatorTest.csproj index 0de6243..7f65684 100644 --- a/PdfAValidatorTest/PdfAValidatorTest.csproj +++ b/PdfAValidatorTest/PdfAValidatorTest.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 false enable true diff --git a/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj b/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj index e1f583c..d6addf9 100644 --- a/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj +++ b/PdfAValidatorWebApi/PdfAValidatorWebApi.csproj @@ -1,7 +1,7 @@  - net8.0 + net10.0 $(Version) $(Version) true diff --git a/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj b/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj index af57e76..f38b659 100644 --- a/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj +++ b/PdfAValidatorWebApiTest/PdfAValidatorWebApiTest.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 false enable true diff --git a/README.md b/README.md index 31cf19d..c7f41cf 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Everything comes with the nuget package ### Ubuntu -Current PdfAValidatorApi depends on openjdk-11-jre and some .net version. +Current PdfAValidatorApi depends on openjdk-11-jre and .NET 10. ```bash sudo apt install openjdk-11-jre @@ -63,5 +63,5 @@ sudo update-alternatives --config java ### Setup .net sdk ubuntu 22.04 ```bash -sudo apt install dotnet6 +sudo apt install dotnet-sdk-10.0 ``` diff --git a/global.json b/global.json new file mode 100644 index 0000000..512142d --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "10.0.100", + "rollForward": "latestFeature" + } +}