Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Feb 20, 2023
1 parent f6cdb52 commit b5bebb8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.x.x
7.0.103
dotnet-version: 6.0.406
- name: make script executable
run: chmod u+x build.sh
- name: Build and test
Expand Down
18 changes: 9 additions & 9 deletions build/build.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand All @@ -19,14 +19,14 @@

<ItemGroup>
<PackageReference Include="BlackFox.Fake.BuildTask" Version="0.1.3" />
<PackageReference Include="Fake.Api.Github" Version="5.22.0" />
<PackageReference Include="Fake.Core.Process" Version="5.22.0" />
<PackageReference Include="Fake.Core.ReleaseNotes" Version="5.22.0" />
<PackageReference Include="Fake.Core.Target" Version="5.22.0" />
<PackageReference Include="Fake.DotNet.Cli" Version="5.22.0" />
<PackageReference Include="Fake.DotNet.MSBuild" Version="5.22.0" />
<PackageReference Include="Fake.IO.FileSystem" Version="5.22.0" />
<PackageReference Include="Fake.Tools.Git" Version="5.22.0" />
<PackageReference Include="Fake.Api.Github" Version="6.0.0-beta001" />
<PackageReference Include="Fake.Core.Process" Version="6.0.0-beta001" />
<PackageReference Include="Fake.Core.ReleaseNotes" Version="6.0.0-beta001" />
<PackageReference Include="Fake.Core.Target" Version="6.0.0-beta001" />
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0-beta001" />
<PackageReference Include="Fake.DotNet.MSBuild" Version="6.0.0-beta001" />
<PackageReference Include="Fake.IO.FileSystem" Version="6.0.0-beta001" />
<PackageReference Include="Fake.Tools.Git" Version="6.0.0-beta001" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100",
"rollForward": "latestMinor"
"version": "6.0.100",
"rollForward": "latestMajor"
}
}

0 comments on commit b5bebb8

Please sign in to comment.