Skip to content
This repository was archived by the owner on Jan 24, 2021. It is now read-only.

Commit 244b940

Browse files
committed
Removed unused TFM parameter (#2448)
1 parent a9c30af commit 244b940

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

build.ps1

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ function Restore-Packages
1717

1818
function Test-Projects
1919
{
20-
param([string] $framework)
2120
& dotnet test;
22-
#& dotnet test -f $framework;
23-
2421
if($LASTEXITCODE -ne 0)
2522
{
2623
exit 3
@@ -44,7 +41,7 @@ Get-ChildItem -Path . -Filter *.xproj -Recurse | ForEach-Object { Restore-Packag
4441
Write-Host "Running tests"
4542
Get-ChildItem -Path .\test -Filter *.xproj -Exclude Nancy.ViewEngines.Razor.Tests.Models.xproj -Recurse | ForEach-Object {
4643
Push-Location $_.DirectoryName
47-
Test-Projects "netcoreapp1.0"
44+
Test-Projects
4845
Pop-Location
4946
}
5047

0 commit comments

Comments
 (0)