-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathFowler.csx
More file actions
42 lines (33 loc) · 684 Bytes
/
Fowler.csx
File metadata and controls
42 lines (33 loc) · 684 Bytes
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
#r "./Tools/Nake/Nake.Meta.dll"
#r "./Tools/Nake/Nake.Utility.dll"
using Nake;
using static Nake.Log;
/// Compile the application code
[Step] void Default()
{
Compile();
}
/// Take data configuration files and use them to generate the database structure and the code to access the database
[Step] void CodeGen()
{
Message("do code gen stuff");
}
/// Compile the application code
[Step] void Compile()
{
CodeGen();
Message("do compile stuff");
}
/// Load test data into the database
[Step] void DataLoad()
{
CodeGen();
Message("do data load stuff");
}
/// Run the tests
[Step] void Test()
{
Compile();
DataLoad();
Message("run tests");
}