Skip to content

Commit b5bebb8

Browse files
committed
ci
1 parent f6cdb52 commit b5bebb8

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

.github/workflows/build-and-test.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: |
21-
6.x.x
22-
7.0.103
20+
dotnet-version: 6.0.406
2321
- name: make script executable
2422
run: chmod u+x build.sh
2523
- name: Build and test

build/build.fsproj

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

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77

@@ -19,14 +19,14 @@
1919

2020
<ItemGroup>
2121
<PackageReference Include="BlackFox.Fake.BuildTask" Version="0.1.3" />
22-
<PackageReference Include="Fake.Api.Github" Version="5.22.0" />
23-
<PackageReference Include="Fake.Core.Process" Version="5.22.0" />
24-
<PackageReference Include="Fake.Core.ReleaseNotes" Version="5.22.0" />
25-
<PackageReference Include="Fake.Core.Target" Version="5.22.0" />
26-
<PackageReference Include="Fake.DotNet.Cli" Version="5.22.0" />
27-
<PackageReference Include="Fake.DotNet.MSBuild" Version="5.22.0" />
28-
<PackageReference Include="Fake.IO.FileSystem" Version="5.22.0" />
29-
<PackageReference Include="Fake.Tools.Git" Version="5.22.0" />
22+
<PackageReference Include="Fake.Api.Github" Version="6.0.0-beta001" />
23+
<PackageReference Include="Fake.Core.Process" Version="6.0.0-beta001" />
24+
<PackageReference Include="Fake.Core.ReleaseNotes" Version="6.0.0-beta001" />
25+
<PackageReference Include="Fake.Core.Target" Version="6.0.0-beta001" />
26+
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0-beta001" />
27+
<PackageReference Include="Fake.DotNet.MSBuild" Version="6.0.0-beta001" />
28+
<PackageReference Include="Fake.IO.FileSystem" Version="6.0.0-beta001" />
29+
<PackageReference Include="Fake.Tools.Git" Version="6.0.0-beta001" />
3030
</ItemGroup>
3131

3232
</Project>

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "7.0.100",
4-
"rollForward": "latestMinor"
3+
"version": "6.0.100",
4+
"rollForward": "latestMajor"
55
}
66
}

0 commit comments

Comments
 (0)