Skip to content

Commit 2a100a3

Browse files
Merge branch 'main' into develop
2 parents 18f504f + ad7684c commit 2a100a3

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- develop
1616

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

2020
jobs:
2121
format:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
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: '8.0.x'
11+
DOTNET_VERSION: '9.0.x'
1212
NUGET_SOURCE: 'https://api.nuget.org/v3/index.json'
1313
BUILD_CONFIGURATION: ''
1414
VERSION_SUFFIX: ''

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
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: '8.0.x'
20+
DOTNET_VERSION: '9.0.x'
2121

2222
jobs:
2323
test:

src/Hyperbee.Templating/Hyperbee.Templating.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<IsPackable>true</IsPackable>
66
<Authors>Stillpoint Software, Inc.</Authors>
77
<PackageReadmeFile>README.md</PackageReadmeFile>
88
<PackageTags>templating;template;template-engine</PackageTags>
99
<PackageIcon>icon.png</PackageIcon>
1010
<PackageProjectUrl>https://stillpoint-software.github.io/hyperbee.templating/</PackageProjectUrl>
11-
<TargetFrameworks>net8.0</TargetFrameworks>
11+
<TargetFrameworks>net9.0</TargetFrameworks>
1212
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1313
<Copyright>Stillpoint Software, Inc.</Copyright>
1414
<Title>Hyperbee Templating</Title>
@@ -42,7 +42,7 @@
4242
<PrivateAssets>all</PrivateAssets>
4343
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4444
</PackageReference>
45-
<PackageReference Include="Hyperbee.Resources" Version="1.0.0" />
45+
<PackageReference Include="Hyperbee.Resources" Version="2.0.0" />
4646
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.12.0" />
4747
</ItemGroup>
4848
</Project>

test/Hyperbee.Templating.Benchmark/Hyperbee.Templating.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<IsPackable>false</IsPackable>

test/Hyperbee.Templating.Tests/Hyperbee.Templating.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<IsTestingPlatformApplication>false</IsTestingPlatformApplication>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
@@ -11,8 +11,8 @@
1111
<EmbeddedResource Include="TestSupport\Resources\TextFile1.txt" />
1212
</ItemGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Hyperbee.Collections" Version="1.0.0" />
15-
<PackageReference Include="Hyperbee.Resources" Version="1.0.0" />
14+
<PackageReference Include="Hyperbee.Collections" Version="2.0.0" />
15+
<PackageReference Include="Hyperbee.Resources" Version="2.0.0" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1717
<PackageReference Include="MSTest.TestFramework" Version="3.6.4" />
1818
<PackageReference Include="MSTest.TestAdapter" Version="3.6.4" />

0 commit comments

Comments
 (0)