From 50107bf6fe42edbdc0ea99b3cc2cbf082f6d7bd1 Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Fri, 28 Apr 2017 12:18:45 -0700 Subject: [PATCH] Prevent parallel execution that causes multiple build to block each others files (#34) --- .../Properties/AssemblyInfo.cs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests/Properties/AssemblyInfo.cs diff --git a/test/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests/Properties/AssemblyInfo.cs b/test/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..918c66949c --- /dev/null +++ b/test/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,3 @@ +using Xunit; + +[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)]