Skip to content

Commit 0b27c9f

Browse files
committed
First stub of FAKE build script
1 parent eef98c3 commit 0b27c9f

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CommandLine.sln

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.31101.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLine", "src\CommandLine\CommandLine.csproj", "{E1BD3C65-49C3-49E7-BABA-C60980CB3F20}"
57
EndProject
68
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLine.Tests", "src\CommandLine.Tests\CommandLine.Tests.csproj", "{0A15C4D2-B3E9-43AB-8155-1B39F7AC8A5E}"
@@ -21,6 +23,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{C37353
2123
.nuget\packages.config = .nuget\packages.config
2224
EndProjectSection
2325
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A6C99AE7-2FE1-4393-9281-7BFCF46A6F53}"
27+
ProjectSection(SolutionItems) = preProject
28+
build.fsx = build.fsx
29+
EndProjectSection
30+
EndProject
2431
Global
2532
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2633
Debug|Any CPU = Debug|Any CPU

build.fsx

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#r "packages/FAKE.3.35.1/tools/FakeLib.dll"
2+
open Fake
3+
4+
let buildDir = "./build/"
5+
6+
Target "Clean" (fun _ ->
7+
CleanDir buildDir
8+
)
9+
10+
Target "Default" (fun _ ->
11+
trace "TODO: complete"
12+
)
13+
14+
// Dependencies
15+
"Clean"
16+
==> "Default"
17+
18+
RunTargetOrDefault "Default"

0 commit comments

Comments
 (0)