diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ec087ad..dd37440e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,11 +13,11 @@ jobs: runs-on: windows-latest timeout-minutes: 15 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 7.0.x - name: Restore dependencies run: dotnet restore "${{env.SOLUTION_PATH}}" - name: Build for Release diff --git a/README_PROJECT.md b/README_PROJECT.md index cbcd2897..55e06c79 100644 --- a/README_PROJECT.md +++ b/README_PROJECT.md @@ -9,8 +9,8 @@ You will need the following development tools to build, run, and test this project: * Jetbrains Rider - obtain a license key for Jetbrains dotUltimate - -* Install the .NET6.0 SDK. Available for [download here](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) + +* Install the .NET7.0 SDK. Available for [download here](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) ------ diff --git a/src/Application.Interfaces/Application.Interfaces.csproj b/src/Application.Interfaces/Application.Interfaces.csproj index 4f444d8c..7d9ee003 100644 --- a/src/Application.Interfaces/Application.Interfaces.csproj +++ b/src/Application.Interfaces/Application.Interfaces.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 diff --git a/src/CarsApplication/CarsApplication.csproj b/src/CarsApplication/CarsApplication.csproj index f83deb76..8c762c39 100644 --- a/src/CarsApplication/CarsApplication.csproj +++ b/src/CarsApplication/CarsApplication.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0 diff --git a/src/Common/Infrastructure.Api.Interfaces/Class1.cs b/src/Common/Infrastructure.Api.Interfaces/Class1.cs deleted file mode 100644 index d627cac9..00000000 --- a/src/Common/Infrastructure.Api.Interfaces/Class1.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace Common.Infrastructure.Api.Interfaces; - -public class Class1 -{ -} \ No newline at end of file diff --git a/src/Common/Infrastructure.Api.Interfaces/Infrastructure.Api.Interfaces.csproj b/src/Common/Infrastructure.Api.Interfaces/Infrastructure.Api.Interfaces.csproj deleted file mode 100644 index eb2460e9..00000000 --- a/src/Common/Infrastructure.Api.Interfaces/Infrastructure.Api.Interfaces.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - net6.0 - enable - enable - - - diff --git a/src/SaaStack.sln b/src/SaaStack.sln index 61881022..ccb4b16a 100644 --- a/src/SaaStack.sln +++ b/src/SaaStack.sln @@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Directory.Build.props = Directory.Build.props GlobalAssemblyInfo.cs = GlobalAssemblyInfo.cs ..\CHANGELOG.md = ..\CHANGELOG.md + ..\README_PROJECT.md = ..\README_PROJECT.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{508E7DA4-4DF2-4201-955D-CCF70C41AD05}" @@ -191,5 +192,6 @@ Global {7AB39FD6-660F-4400-9955-B92684378492} = {B68592DF-E8E8-452A-A46F-5C8ECB178FDF} {19ADDB2F-B589-49EF-9BDA-BD9908057D60} = {B68592DF-E8E8-452A-A46F-5C8ECB178FDF} {4CF7C7E2-C95D-4440-9ECF-5D1CE2A46D7A} = {19ADDB2F-B589-49EF-9BDA-BD9908057D60} + {AE57212B-9A30-4577-A795-7B411621BCDA} = {19ADDB2F-B589-49EF-9BDA-BD9908057D60} EndGlobalSection EndGlobal diff --git a/src/UnitTesting.Common/UnitTesting.Common.csproj b/src/UnitTesting.Common/UnitTesting.Common.csproj index 51e61629..01daa9a5 100644 --- a/src/UnitTesting.Common/UnitTesting.Common.csproj +++ b/src/UnitTesting.Common/UnitTesting.Common.csproj @@ -1,7 +1,7 @@ - net6.0 + net7.0