Skip to content

Commit

Permalink
fix: kill build.fsx.lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-tihon committed Mar 12, 2024
1 parent c0c2dde commit 9b7ef15
Showing 3 changed files with 10 additions and 206 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -19,9 +19,9 @@ jobs:

steps:
- name: Setup .NET 8.0 SDK
uses: actions/setup-dotnet@v2
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: '8.0.x'
- name: Install local tools
run: dotnet tool restore
- name: Paket Restore
19 changes: 8 additions & 11 deletions build.fsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
#load ".fake/build.fsx/intellisense.fsx"

// Boilerplate - https://github.com/fsprojects/FAKE/issues/2719#issuecomment-1470687052
System.Environment.GetCommandLineArgs()
|> Array.skip 2 // skip fsi.exe; build.fsx
|> Array.toList
|> Fake.Core.Context.FakeExecutionContext.Create false __SOURCE_FILE__
|> Fake.Core.Context.RuntimeContext.Fake
|> Fake.Core.Context.setExecutionContext

// the rest of your original build.fsx content...
#r "nuget: Fake.Core.Target"
#r "nuget: Fake.Core.Process"
#r "nuget: Fake.Core.ReleaseNotes"
@@ -21,6 +10,14 @@ System.Environment.GetCommandLineArgs()
#r "nuget: Fake.Tools.Git"
#r "nuget: Fake.Api.GitHub"

// Boilerplate - https://github.com/fsprojects/FAKE/issues/2719#issuecomment-1470687052
System.Environment.GetCommandLineArgs()
|> Array.skip 2 // skip fsi.exe; build.fsx
|> Array.toList
|> Fake.Core.Context.FakeExecutionContext.Create false __SOURCE_FILE__
|> Fake.Core.Context.RuntimeContext.Fake
|> Fake.Core.Context.setExecutionContext

open Fake
open Fake.Core.TargetOperators
open Fake.Core
193 changes: 0 additions & 193 deletions build.fsx.lock

This file was deleted.

0 comments on commit 9b7ef15

Please sign in to comment.