Disable tests in parallel

This commit is contained in:
Nate McMaster 2017-10-12 17:24:37 -07:00
parent 5541615008
commit a4ba5a1cb1
2 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Disable producing this package from the rel/2.0.x branch -->
<IsPackable>false</IsPackable>
<!-- Disable producing this package from the rel/2.0.x branch -->
<IsPackable>false</IsPackable>
<TargetFramework>netcoreapp2.0</TargetFramework>
<NuspecFile>Microsoft.DotNet.Web.ProjectTemplates.1.x.nuspec</NuspecFile>

View File

@ -0,0 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
[assembly: Xunit.CollectionBehavior(DisableTestParallelization = true)]