Skip to content

Commit 0dfe502

Browse files
committed
-Build
1 parent 7399216 commit 0dfe502

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Bb]in/
22
[Oo]bj/
3-
[Ww]orking/
3+
[Ww]orking*/
44
Build/runbuild.txt
55
Doc/doc.shfbproj_*
66
TestResults/

Build/build.ps1

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88
$buildDocumentation = $false
99
$buildNuGet = $true
1010
$treatWarningsAsErrors = $false
11+
$workingName = "Working"
1112

1213
$baseDir = resolve-path ..
1314
$buildDir = "$baseDir\Build"
1415
$sourceDir = "$baseDir\Src"
1516
$toolsDir = "$baseDir\Tools"
1617
$docDir = "$baseDir\Doc"
1718
$releaseDir = "$baseDir\Release"
18-
$workingDir = "$baseDir\Working"
19+
$workingDir = "$baseDir\$workingName"
1920
$builds = @(
2021
@{Name = "Newtonsoft.Json"; TestsName = "Newtonsoft.Json.Tests"; TestsFunction = "NUnitTests"; Constants=""; FinalDir="Net45"; NuGetDir = "net45"; Framework="net-4.0"; Sign=$true},
2122
@{Name = "Newtonsoft.Json.Portable"; TestsName = "Newtonsoft.Json.Tests.Portable"; TestsFunction = "NUnitTests"; Constants="PORTABLE"; FinalDir="Portable"; NuGetDir = "portable-net45+wp80+win8+wpa81+aspnetcore50"; Framework="net-4.0"; Sign=$true},
@@ -38,7 +39,7 @@ task Clean {
3839

3940
if (Test-Path -path $workingDir)
4041
{
41-
Write-Output "Deleting Working Directory"
42+
Write-Output "Deleting Working Directory $workingDir"
4243

4344
del $workingDir -Recurse -Force
4445
}

0 commit comments

Comments
 (0)