We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c30af commit 244b940Copy full SHA for 244b940
1 file changed
build.ps1
@@ -17,10 +17,7 @@ function Restore-Packages
17
18
function Test-Projects
19
{
20
- param([string] $framework)
21
& dotnet test;
22
- #& dotnet test -f $framework;
23
-
24
if($LASTEXITCODE -ne 0)
25
26
exit 3
@@ -44,7 +41,7 @@ Get-ChildItem -Path . -Filter *.xproj -Recurse | ForEach-Object { Restore-Packag
44
41
Write-Host "Running tests"
45
42
Get-ChildItem -Path .\test -Filter *.xproj -Exclude Nancy.ViewEngines.Razor.Tests.Models.xproj -Recurse | ForEach-Object {
46
43
Push-Location $_.DirectoryName
47
- Test-Projects "netcoreapp1.0"
+ Test-Projects
48
Pop-Location
49
}
50
0 commit comments