Skip to content

Commit

Permalink
Merge pull request #71 from hmlendea/dotnet
Browse files Browse the repository at this point in the history
Upgraded to .NET 8.0
  • Loading branch information
hmlendea authored May 17, 2024
2 parents a03e1db + 2f36b2a commit 3a172ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>MoreCulturalNamesBuilder.UnitTests</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion MoreCulturalNamesBuilder/MoreCulturalNamesBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>MoreCulturalNamesBuilder</RootNamespace>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
DOTNET_VERSION="7.0"
DOTNET_VERSION="8.0"
RELEASE_SCRIPT_URL="https://raw.githubusercontent.com/hmlendea/deployment-scripts/master/release/dotnet/${DOTNET_VERSION}.sh"
curl -sSL "${RELEASE_SCRIPT_URL}" | bash -s ${1} --no-trim

0 comments on commit 3a172ae

Please sign in to comment.