forked from hibernating-rhinos/rhino-queues
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.ps1
83 lines (72 loc) · 2.57 KB
/
default.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
properties {
$base_dir = resolve-path .
$lib_dir = "$base_dir\SharedLibs"
$build_dir = "$base_dir\build"
$packageinfo_dir = "$base_dir\packaging"
$40_build_dir = "$build_dir\4.0\"
$35_build_dir = "$build_dir\3.5\"
$sln_file = "$base_dir\Rhino.Queues.sln"
$version = "1.3.0.0"
$config = "Release"
$tools_dir = "$base_dir\Tools"
$release_dir = "$base_dir\Release"
}
$framework = "4.0"
include .\psake_ext.ps1
task default -depends Package
task Clean {
remove-item -force -recurse $build_dir -ErrorAction SilentlyContinue
remove-item -force -recurse $release_dir -ErrorAction SilentlyContinue
}
task Init -depends Clean {
Generate-Assembly-Info `
-file "$base_dir\Rhino.Queues\Properties\AssemblyInfo.cs" `
-title "Rhino Queues $version" `
-description "HTTP based reliable async queuing system" `
-company "Hibernating Rhinos" `
-product "Rhino Queues $version" `
-version $version `
-copyright "Hibernating Rhinos & Ayende Rahien 2004 - 2009" `
-clsCompliant "false"
Generate-Assembly-Info `
-file "$base_dir\Rhino.Queues.Tests\Properties\AssemblyInfo.cs" `
-title "Rhino Queues $version" `
-description "HTTP based reliable async queuing system" `
-company "Hibernating Rhinos" `
-product "Rhino Queues $version" `
-version $version `
-copyright "Hibernating Rhinos & Ayende Rahien 2004 - 2009" `
-clsCompliant "false"
new-item $release_dir -itemType directory
new-item $build_dir -itemType directory
}
task Compile -depends Init {
msbuild $sln_file /p:"OutDir=$40_build_dir;Configuration=$config;TargetFrameworkVersion=4.0"
msbuild $sln_file /target:Rebuild /p:"OutDir=$35_build_dir;Configuration=$config;TargetFrameworkVersion=V3.5"
}
task Test -depends Compile {
$old = pwd
cd $build_dir
& $tools_dir\xUnit\xunit.console.exe "$35_build_dir\Rhino.Queues.Tests.dll" /noshadow
cd $old
}
task Release -depends Test {
cd $build_dir
& $tools_dir\7za.exe a $release_dir\Rhino.Queues.zip `
*\Rhino.Queues.dll `
*\Rhino.Queues.pdb `
*\log4net.dll `
*\Rhino.Queues.xml `
*\Esent.Interop.dll `
*\Esent.Interop.xml `
*\Wintellect.Threading.dll `
*\Wintellect.Threading.xml `
license.txt `
acknowledgements.txt
if ($lastExitCode -ne 0) {
throw "Error: Failed to execute ZIP command"
}
}
task Package -depends Release {
& $tools_dir\NuGet.exe pack $packageinfo_dir\rhino.queues.nuspec -o $release_dir -Version $version -Symbols -BasePath $base_dir
}