Skip to content

Commit

Permalink
Upgraded build and remaining projects to .NET 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jezzsantos committed Sep 16, 2023
1 parent 7d6ce60 commit 45eb7ce
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README_PROJECT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

------

Expand Down
2 changes: 1 addition & 1 deletion src/Application.Interfaces/Application.Interfaces.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion src/CarsApplication/CarsApplication.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
5 changes: 0 additions & 5 deletions src/Common/Infrastructure.Api.Interfaces/Class1.cs

This file was deleted.

This file was deleted.

1 change: 1 addition & 0 deletions src/SaaStack.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion src/UnitTesting.Common/UnitTesting.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 45eb7ce

Please sign in to comment.