forked from quartznet/quartznet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.fsx
137 lines (112 loc) · 3.67 KB
/
build.fsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#r "packages/FAKE/tools/FakeLib.dll"
open Fake
open Fake.AssemblyInfoFile
open Fake.Git
open System
open System.Collections.Generic
open System.IO
let commitHash = Information.getCurrentHash()
let configuration = getBuildParamOrDefault "configuration" "Release"
let projectJsonFiles = !! "src/*/project.json" -- "src/*Web*/project.json"
Target "Clean" (fun _ ->
!! "artifacts" ++ "src/*/bin" ++ "src/*/obj" ++ "test/*/bin" ++ "test/*/obj" ++ "build" ++ "deploy"
|> CleanDirs
)
Target "GenerateAssemblyInfo" (fun _ ->
CreateCSharpAssemblyInfo "./src/AssemblyInfo.cs"
[
(Attribute.Product("Quarz.NET"))
(Attribute.Description("Quartz Scheduling Framework for .NET"))
(Attribute.Copyright("Copyright 2001-2016 Marko Lahma"))
(Attribute.Trademark("Apache License, Version 2.0"))
(Attribute.Company("http://www.quartz-scheduler.net/"))
(Attribute.CLSCompliant(true))
(Attribute.ComVisible(false))
(Attribute.Metadata("githash", commitHash))]
)
Target "Build" (fun _ ->
let restore f = DotNetCli.Restore (fun p ->
{ p with
AdditionalArgs = [f] })
projectJsonFiles
|> Seq.iter restore
projectJsonFiles
|> DotNetCli.Build
(fun p ->
{ p with
Configuration = configuration })
)
Target "BuildSolutions" (fun _ ->
let setParams defaults =
{ defaults with
Verbosity = Some(Quiet)
Targets = ["Build"]
Properties =
[
"Optimize", "True"
"DebugSymbols", "True"
"Configuration", configuration
]
}
build setParams "./Quartz.sln"
|> DoNothing
build setParams "./Quartz-DotNetCore.sln"
|> DoNothing
)
Target "Pack" (fun _ ->
!! "src/Quartz/project.json" ++ "src/Quartz.Serialization.Json/project.json"
|> DotNetCli.Pack
(fun p ->
{ p with
Configuration = "Release"
})
!! "src/*/bin/**/*.nupkg"
|> Copy "artifacts"
)
Target "Test" (fun _ ->
!! "src/Quartz.Tests.Unit/project.json"
|> DotNetCli.Test
(fun p ->
{ p with
Configuration = configuration
AdditionalArgs = ["--where \"cat != database && cat != fragile\""] })
)
Target "ApiDoc" (fun _ ->
let setParams defaults =
{ defaults with
Verbosity = Some(Quiet)
Targets = ["Build"]
Properties =
[
"Configuration", "Release"
]
}
build setParams "./Quartz.sln"
|> DoNothing
let setShfbParams defaults =
{ defaults with
Verbosity = Some(Quiet)
Targets = ["Build"]
Properties =
[
"CleanIntermediates", "True"
"Configuration", "Release"
]
}
build setShfbParams "doc/quartznet.shfbproj"
|> DoNothing
let headerContent = ReadFileAsString "doc/header.template"
let footerContent = ReadFileAsString "doc/footer.template"
!! "build/apidoc/**/*.htm" ++ "build/apidoc/**/*.html"
|> ReplaceInFiles [("@HEADER@", footerContent);("@FOOTER@", headerContent)]
)
"Clean"
==> "GenerateAssemblyInfo"
==> "Build"
=?> ("BuildSolutions", hasBuildParam "buildSolutions")
==> "Test"
==> "Pack"
"Clean"
==> "GenerateAssemblyInfo"
==> "ApiDoc"
RunTargetOrDefault "Test"