Skip to content

Commit

Permalink
Convert build.fsx to build project
Browse files Browse the repository at this point in the history
  • Loading branch information
schauerte committed Oct 6, 2023
1 parent 6e7d332 commit 6efdff4
Show file tree
Hide file tree
Showing 9 changed files with 298 additions and 587 deletions.
8 changes: 1 addition & 7 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,8 @@
"fsdocs"
]
},
"fake-cli": {
"version": "5.22.0",
"commands": [
"fake"
]
},
"paket": {
"version": "7.1.5",
"version": "7.2.1",
"commands": [
"paket"
]
Expand Down
6 changes: 5 additions & 1 deletion FSharp.Data.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.fantomasignore = .fantomasignore
build.fsx = build.fsx
CONTRIBUTING.md = CONTRIBUTING.md
LICENSE.md = LICENSE.md
paket.dependencies = paket.dependencies
Expand Down Expand Up @@ -94,6 +93,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tutorials", "tutorials", "{
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "FSharp.Data.Runtime.Utilities", "src\FSharp.Data.Runtime.Utilities\FSharp.Data.Runtime.Utilities.fsproj", "{D04AFA70-4A59-4E1C-AC41-BA0EA70140FF}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "_build", "build\_build.fsproj", "{2679C2BB-D2CA-4F6B-9AD2-38A5D2E8D497}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -156,6 +157,9 @@ Global
{D04AFA70-4A59-4E1C-AC41-BA0EA70140FF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D04AFA70-4A59-4E1C-AC41-BA0EA70140FF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D04AFA70-4A59-4E1C-AC41-BA0EA70140FF}.Release|Any CPU.Build.0 = Release|Any CPU
{2679C2BB-D2CA-4F6B-9AD2-38A5D2E8D497}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2679C2BB-D2CA-4F6B-9AD2-38A5D2E8D497}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2679C2BB-D2CA-4F6B-9AD2-38A5D2E8D497}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

dotnet tool restore
dotnet paket restore
dotnet fake build %*
dotnet run --project build/_build.fsproj %*
238 changes: 0 additions & 238 deletions build.fsx

This file was deleted.

2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
dotnet tool restore
dotnet paket restore
dotnet fake build -t Build
dotnet run --project build/_build.fsproj -t Build
Loading

0 comments on commit 6efdff4

Please sign in to comment.