-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves main build script to use dotnet as runner instead of fake-cli
- Loading branch information
1 parent
969c1f7
commit 7b4424a
Showing
7 changed files
with
130 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"fake-cli": { | ||
"version": "5.20.4-alpha.1642", | ||
"commands": [ | ||
"fake" | ||
] | ||
}, | ||
"paket": { | ||
"version": "6.0.0-beta8", | ||
"commands": [ | ||
"paket" | ||
] | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"paket": { | ||
"version": "6.0.0-beta8", | ||
"commands": [ | ||
"paket" | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
echo Restoring dotnet tools... | ||
dotnet tool restore | ||
|
||
dotnet fake build -t %* | ||
dotnet run -p ./build/build.fsproj -- -t %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<WarnOn>3390;$(WarnOn)</WarnOn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
|
||
<Compile Include="../docsTool/CLI.fs" Link="CLI.fs" /> | ||
<Compile Include="build.fs" /> | ||
</ItemGroup> | ||
<Import Project="..\.paket\Paket.Restore.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
group Build | ||
FSharp.Core | ||
YoloDev.Expecto.TestSdk | ||
Microsoft.NET.Test.Sdk | ||
Fake.IO.FileSystem | ||
Fake.Core.Target | ||
Fake.Core.ReleaseNotes | ||
FAKE.Core.Environment | ||
Fake.DotNet.Cli | ||
FAKE.Core.Process | ||
Fake.DotNet.AssemblyInfoFile | ||
Fake.Tools.Git | ||
Fake.DotNet.Paket | ||
Fake.Api.GitHub | ||
Fake.BuildServer.GitHubActions | ||
Argu | ||
Octokit |