forked from jbogard/ContosoUniversityDotNetCore-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psakefile.ps1
61 lines (51 loc) · 2.35 KB
/
psakefile.ps1
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
include "./psake-build-helpers.ps1"
properties {
$configuration = 'Release'
$owner = 'Jimmy Bogard'
$product = 'Contoso University Core'
$yearInitiated = '2016'
$projectRootDirectory = "$(resolve-path .)"
$publish = "$projectRootDirectory/publish"
$testResults = "$projectRootDirectory/TestResults"
}
task default -depends Test
task CI -depends Clean, Test, Publish -description "Continuous Integration process"
task Rebuild -depends Clean, Compile -description "Rebuild the code and database, no testing"
task Info -description "Display runtime information" {
exec { dotnet --info }
}
task MigrateTest -description "Recreate the testing database" {
# drop and recreate the test database
exec { dotnet grate `
-c "Server=(localdb)\mssqllocaldb;Database=ContosoUniversityDotNetCore-Pages-Test;Trusted_Connection=True;MultipleActiveResultSets=true" `
-f ContosoUniversity/App_Data `
--silent `
--drop `
}
}
task Test -depends Compile, MigrateTest -description "Run unit tests" {
# find any directory that ends in "Tests" and execute a test
exec { dotnet test --configuration $configuration --no-build -l "trx;LogFileName=$($_.name).trx" -l "html;LogFileName=$($_.name).html" -l "console;verbosity=normal" -r $testResults }
}
task Compile -depends Info -description "Compile the solution" {
exec { dotnet build --configuration $configuration --nologo -p:"Product=$($product)" -p:"Copyright=$(get-copyright)" } -workingDirectory .
}
task Publish -depends Compile -description "Publish the primary projects for distribution" {
remove-directory-silently $publish
exec { publish-project } -workingDirectory ContosoUniversity
}
task Migrate -description "Migrate the changes into the runtime database" {
exec { dotnet grate `
-c "Server=(localdb)\mssqllocaldb;Database=ContosoUniversityDotNetCore-Pages;Trusted_Connection=True;MultipleActiveResultSets=true" `
-f ContosoUniversity/App_Data `
--silent `
}
}
task Clean -description "Clean out all the binary folders" {
exec { dotnet clean --configuration $configuration /nologo } -workingDirectory .
remove-directory-silently $publish
remove-directory-silently $testResults
}
task ? -alias help -description "Display help content and possible targets" {
WriteDocumentation
}