Skip to content

Commit 136bf2a

Browse files
committed
1.0.2
1 parent 13bf067 commit 136bf2a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

WebApiClient.Analyzers/WebApiClient.Analyzers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Version>1.0.0-rc1</Version>
4+
<Version>1.0.0</Version>
55
<TargetFramework>netstandard1.1</TargetFramework>
66
<PackageTargetFallback>portable-net45+win8</PackageTargetFallback>
77
<Configurations>JIT_Debug;JIT_Release;AOT_Debug;AOT_Release</Configurations>

WebApiClient/Attributes/FilterAttributes/TraceFilterBaseAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public async override Task OnEndRequestAsync(ApiActionContext context)
8383
}
8484
}
8585

86-
await this.LogTraceMessageAsync(context, message);
86+
await this.LogTraceMessageAsync(context, message).ConfigureAwait(false);
8787
}
8888

8989
/// <summary>

WebApiClient/Attributes/ParameterAttributes/JsonFormFieldAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public async Task BeforeRequestAsync(ApiActionContext context, ApiParameterDescr
2929
var options = context.HttpApiConfig.FormatOptions;
3030
var json = context.HttpApiConfig.JsonFormatter.Serialize(parameter.Value, options);
3131
var fieldName = parameter.Name;
32-
await context.RequestMessage.AddFormFieldAsync(fieldName, json);
32+
await context.RequestMessage.AddFormFieldAsync(fieldName, json).ConfigureAwait(false);
3333
}
3434
}
3535
}

WebApiClient/WebApiClient.csproj

-8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)