We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7add1c6 commit 063b04fCopy full SHA for 063b04f
Build.ps1
@@ -99,8 +99,10 @@ CheckLastExitCode
99
dotnet build -c Release
100
CheckLastExitCode
101
102
-RunInspectCode
103
-RunCleanupCode
+if ($isWindows) {
+ RunInspectCode
104
+ RunCleanupCode
105
+}
106
107
dotnet test -c Release --no-build --collect:"XPlat Code Coverage"
108
src/Examples/CosmosDbExample/Startup.cs
@@ -42,9 +42,6 @@ public void ConfigureServices(IServiceCollection services)
42
{
43
builder.ConnectionMode(ConnectionMode.Gateway);
44
builder.LimitToEndpoint();
45
-
46
- // Fail fast!
47
- builder.RequestTimeout(TimeSpan.FromSeconds(10));
48
});
49
#if DEBUG
50
options.EnableSensitiveDataLogging();
0 commit comments