Skip to content

Commit ab8f689

Browse files
Fixed workflows
1 parent 2aa3e3e commit ab8f689

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/Format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- develop
1616

1717
env:
18-
DOTNET_VERSION: '9.0.x'
18+
DOTNET_VERSION: '8.0.x'
1919

2020
jobs:
2121
format:

.github/workflows/Publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
BRANCH_NAME: ${{ github.event.release.target_commitish }}
1010
SOLUTION_NAME: ${{ vars.SOLUTION_NAME }}
11-
DOTNET_VERSION: '9.0.x'
11+
DOTNET_VERSION: '8.0.x'
1212
NUGET_SOURCE: 'https://api.nuget.org/v3/index.json'
1313
BUILD_CONFIGURATION: ''
1414
VERSION_SUFFIX: ''

.github/workflows/Test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
env:
1818
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
1919
SOLUTION_NAME: ${{ vars.SOLUTION_NAME }}
20-
DOTNET_VERSION: '9.0.x'
20+
DOTNET_VERSION: '8.0.x'
2121

2222
jobs:
2323
test:

Hyperbee.Resources.sln

+3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
2626
ProjectSection(SolutionItems) = preProject
2727
.github\workflows\Create Issue Branch.yml = .github\workflows\Create Issue Branch.yml
2828
.github\workflows\Create Release.yml = .github\workflows\Create Release.yml
29+
.github\workflows\Format.yml = .github\workflows\Format.yml
30+
.github\workflows\Publish.yml = .github\workflows\Publish.yml
2931
.github\workflows\Test Report.yml = .github\workflows\Test Report.yml
32+
.github\workflows\Test.yml = .github\workflows\Test.yml
3033
.github\workflows\Unlist Nuget.yml = .github\workflows\Unlist Nuget.yml
3134
.github\workflows\Update Version.yml = .github\workflows\Update Version.yml
3235
EndProjectSection

src/Hyperbee.Resources/Hyperbee.Resources.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -12,7 +12,7 @@
1212
<PackageTags>resources;NET;embedded resources</PackageTags>
1313
<PackageIcon>icon.png</PackageIcon>
1414
<PackageProjectUrl>https://github.com/Stillpoint-Software/Hyperbee.Resources/</PackageProjectUrl>
15-
<TargetFrameworks>net9.0</TargetFrameworks>
15+
<TargetFrameworks>net8.0</TargetFrameworks>
1616
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1717
<Copyright>Stillpoint Software, Inc.</Copyright>
1818
<Title>Hyperbee Resources</Title>

test/Hyperbee.Resources.Tests/Hyperbee.Resources.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)