diff --git a/AspNetCore.sln b/AspNetCore.sln
index f8ea1fe3..70825618 100644
--- a/AspNetCore.sln
+++ b/AspNetCore.sln
@@ -1,9 +1,12 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
-VisualStudioVersion = 15.0.26906.1
+VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2D805782-756E-4C98-B22E-F502BEE95318}"
+ ProjectSection(SolutionItems) = preProject
+ src\Directory.Build.props = src\Directory.Build.props
+ EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{31A4DDB1-952E-4EED-96EF-29C669279A86}"
ProjectSection(SolutionItems) = preProject
diff --git a/build/dependencies.props b/build/dependencies.props
index 38a88f48..4f5279ec 100644
--- a/build/dependencies.props
+++ b/build/dependencies.props
@@ -2,17 +2,19 @@
2.0.0-*
2.0.0-*
- 2.0.0-*
+ 2.0.1
+ 2.0.2
+ 2.0.0
4.4.0-*
2.0.0-*
- 4.7.49
+ 4.8.1
10.0.2
2.0.0-*
2.0.0-*
- 15.3.0-*
- 2.3.0-beta2-*
- 4.19.2
- 4.19.0
+ 15.5.0
+ 2.3.1
+ 5.0.0
+ 5.0.0
1.0.0
diff --git a/sandbox/MetricsReportingSandboxMvc/MetricsReportingSandboxMvc.csproj b/sandbox/MetricsReportingSandboxMvc/MetricsReportingSandboxMvc.csproj
index ae00b999..651e242a 100644
--- a/sandbox/MetricsReportingSandboxMvc/MetricsReportingSandboxMvc.csproj
+++ b/sandbox/MetricsReportingSandboxMvc/MetricsReportingSandboxMvc.csproj
@@ -9,11 +9,11 @@
-
-
+
+
-
-
+
+
@@ -28,7 +28,7 @@
-
+
diff --git a/sandbox/MetricsSandboxMvc/MetricsSandboxMvc.csproj b/sandbox/MetricsSandboxMvc/MetricsSandboxMvc.csproj
index 86733550..972c907a 100644
--- a/sandbox/MetricsSandboxMvc/MetricsSandboxMvc.csproj
+++ b/sandbox/MetricsSandboxMvc/MetricsSandboxMvc.csproj
@@ -9,11 +9,11 @@
-
-
+
+
-
-
+
+
@@ -27,7 +27,7 @@
-
+
diff --git a/src/App.Metrics.AspNetCore.Core/App.Metrics.AspNetCore.Core.csproj b/src/App.Metrics.AspNetCore.Core/App.Metrics.AspNetCore.Core.csproj
index 53a19cce..f3e7b7bb 100644
--- a/src/App.Metrics.AspNetCore.Core/App.Metrics.AspNetCore.Core.csproj
+++ b/src/App.Metrics.AspNetCore.Core/App.Metrics.AspNetCore.Core.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index ad660fa9..1a172c2f 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file
diff --git a/test/App.Metrics.AspNetCore.Integration.Facts/App.Metrics.AspNetCore.Integration.Facts.csproj b/test/App.Metrics.AspNetCore.Integration.Facts/App.Metrics.AspNetCore.Integration.Facts.csproj
index 75445856..961f07af 100644
--- a/test/App.Metrics.AspNetCore.Integration.Facts/App.Metrics.AspNetCore.Integration.Facts.csproj
+++ b/test/App.Metrics.AspNetCore.Integration.Facts/App.Metrics.AspNetCore.Integration.Facts.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/test/App.Metrics.AspNetCore.Integration.Facts/DependencyInjection/MiddlewareAppMetricsBuilderExtensionsTests.cs b/test/App.Metrics.AspNetCore.Integration.Facts/DependencyInjection/MiddlewareAppMetricsBuilderExtensionsTests.cs
index f36399a2..95d00937 100644
--- a/test/App.Metrics.AspNetCore.Integration.Facts/DependencyInjection/MiddlewareAppMetricsBuilderExtensionsTests.cs
+++ b/test/App.Metrics.AspNetCore.Integration.Facts/DependencyInjection/MiddlewareAppMetricsBuilderExtensionsTests.cs
@@ -26,8 +26,8 @@ public void Can_load_settings_from_configuration()
Action resolveOptions = () => { trackingOptions = provider.GetRequiredService>().Value; };
Action resolveEndpointsOptions = () => { endpointOptions = provider.GetRequiredService>().Value; };
- resolveOptions.ShouldNotThrow();
- resolveEndpointsOptions.ShouldNotThrow();
+ resolveOptions.Should().NotThrow();
+ resolveEndpointsOptions.Should().NotThrow();
trackingOptions.ApdexTrackingEnabled.Should().Be(false);
trackingOptions.ApdexTSeconds.Should().Be(0.8);
@@ -48,7 +48,7 @@ public void Can_override_settings_from_configuration()
Action resolveOptions = () => { options = provider.GetRequiredService>().Value; };
- resolveOptions.ShouldNotThrow();
+ resolveOptions.Should().NotThrow();
options.ApdexTrackingEnabled.Should().Be(true);
options.ApdexTSeconds.Should().Be(0.7);
}