Skip to content

Commit

Permalink
Revert "bumpe tests to .NET Core 2.1"
Browse files Browse the repository at this point in the history
This reverts commit f76e09f.
  • Loading branch information
Aaronontheweb committed Mar 12, 2019
1 parent f76e09f commit 175d6ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ Target "RunTestsNetCore" (fun _ ->
let runSingleProject project =
let arguments =
match (hasTeamCity) with
| true -> (sprintf "--no-build --logger:\"console;verbosity=normal\" --framework netcoreapp2.1 --results-directory %s -- -parallel none -teamcity" (outputTests))
| false -> (sprintf "--no-build --logger:\"console;verbosity=normal\" --framework netcoreapp2.1 --results-directory %s -- -parallel none" (outputTests))
| true -> (sprintf "--no-build --logger:\"console;verbosity=normal\" --framework netcoreapp1.1 --results-directory %s -- -parallel none -teamcity" (outputTests))
| false -> (sprintf "--no-build --logger:\"console;verbosity=normal\" --framework netcoreapp1.1 --results-directory %s -- -parallel none" (outputTests))

DotNetCli.Test
(fun t ->
Expand Down
2 changes: 1 addition & 1 deletion src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<XunitVersion>2.3.1</XunitVersion>
<TestSdkVersion>15.9.0</TestSdkVersion>
<HyperionVersion>0.9.8</HyperionVersion>
<NetCoreTestVersion>netcoreapp2.1</NetCoreTestVersion>
<NetCoreTestVersion>netcoreapp1.1</NetCoreTestVersion>
<NetFrameworkTestVersion>net461</NetFrameworkTestVersion>
<NetStandardLibVersion>netstandard1.6</NetStandardLibVersion>
<NetFrameworkLibVersion>net45</NetFrameworkLibVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "2.1.500"
"version": "2.0.0"
}
}

0 comments on commit 175d6ca

Please sign in to comment.