Skip to content

Commit 6f16c7f

Browse files
committed
Merge branch 'release/5.0.0'
* release/5.0.0: (build) Update to latest GitReleaseManager (#146) Compile against Cake 5.0.0
2 parents c7f5a2e + 99766df commit 6f16c7f

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,15 @@ jobs:
4646
path: tools
4747
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
4848

49-
- name: Install .NET SDK 5.0.x - 8.0.x
49+
- name: Install .NET SDK 5.0.x - 9.0.x
5050
uses: actions/setup-dotnet@v4.3.1
5151
with:
5252
dotnet-version: |
5353
5.0.x
5454
6.0.x
5555
7.0.x
5656
8.0.x
57+
9.0.x
5758
5859
- name: Install .NET Core SDK (global.json)
5960
uses: actions/setup-dotnet@v4.3.1

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@ jobs:
3434
with:
3535
fetch-depth: 0
3636

37-
- name: Install .NET SDK 5.0.x - 8.0.x
37+
- name: Install .NET SDK 5.0.x - 9.0.x
3838
uses: actions/setup-dotnet@v4.3.1
3939
with:
4040
dotnet-version: |
4141
5.0.x
4242
6.0.x
4343
7.0.x
4444
8.0.x
45+
9.0.x
4546
4647
# If this run was triggered by a pull request event, then checkout
4748
# the head of the pull request instead of the merge commit.

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
next-version: 4.0.0
1+
next-version: 5.0.0

Source/Cake.Twitter/Cake.Twitter.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-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
44
<GenerateDocumentationFile>true</GenerateDocumentationFile>
55
<IncludeSymbols>true</IncludeSymbols>
66
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
@@ -40,13 +40,13 @@
4040
</ItemGroup>
4141

4242
<ItemGroup>
43-
<PackageReference Include="Cake.Core" Version="4.0.0" PrivateAssets="All" />
43+
<PackageReference Include="Cake.Core" Version="5.0.0" PrivateAssets="All" />
4444
<PackageReference Include="Cake.Addin.Analyzer" Version="0.1.3">
4545
<PrivateAssets>all</PrivateAssets>
4646
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4747
</PackageReference>
4848
<PackageReference Include="Cake.Testing" Version="4.0.0" />
49-
<PackageReference Include="CakeContrib.Guidelines" Version="1.5.1">
49+
<PackageReference Include="CakeContrib.Guidelines" Version="1.6.1">
5050
<PrivateAssets>all</PrivateAssets>
5151
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5252
</PackageReference>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.410",
3+
"version": "9.0.204",
44
"rollForward": "feature",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)