mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-23 16:26:02 +00:00
cleaned build script.
This commit is contained in:
parent
1373d34013
commit
0a7401c180
1 changed files with 3 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
$msBuild = 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe'
|
||||
$outputFolder = '.\_output'
|
||||
|
||||
$testPackageFolder = '.\_tests\'
|
||||
|
||||
Function Build()
|
||||
{
|
||||
|
@ -56,10 +56,7 @@ Function PackageTests()
|
|||
{
|
||||
Write-Host Packaging Tests
|
||||
|
||||
$testPackageFolder = '.\_tests\'
|
||||
|
||||
.\.nuget\NuGet.exe install NUnit.Runners -Version 2.6.1 -Output $testPackageFolder
|
||||
|
||||
|
||||
if(Test-Path $testPackageFolder)
|
||||
{
|
||||
Remove-Item -Recurse -Force $testPackageFolder -ErrorAction Continue
|
||||
|
@ -70,6 +67,7 @@ Function PackageTests()
|
|||
Copy-Item -Recurse ($_.FullName + "\*") $testPackageFolder -ErrorAction Ignore
|
||||
}
|
||||
|
||||
.\.nuget\NuGet.exe install NUnit.Runners -Version 2.6.1 -Output $testPackageFolder
|
||||
|
||||
CleanFolder $testPackageFolder
|
||||
|
||||
|
|
Loading…
Reference in a new issue