File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
benchmarks/RestSharp.Benchmarks Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 9
9
10
10
<ItemGroup >
11
11
<PackageReference Include =" AutoFixture" Version =" 4.17.0" />
12
- <PackageReference Include =" BenchmarkDotNet" Version =" 0.13.1 " />
12
+ <PackageReference Include =" BenchmarkDotNet" Version =" 0.13.2 " />
13
13
</ItemGroup >
14
14
<ItemGroup >
15
15
<ProjectReference Include =" ..\..\src\RestSharp.Serializers.NewtonsoftJson\RestSharp.Serializers.NewtonsoftJson.csproj" />
Original file line number Diff line number Diff line change 19
19
20
20
<ItemGroup >
21
21
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" PrivateAssets =" All" />
22
- <PackageReference Include =" MinVer" Version =" 4.1 .0" PrivateAssets =" All" />
22
+ <PackageReference Include =" MinVer" Version =" 4.2 .0" PrivateAssets =" All" />
23
23
<PackageReference Include =" JetBrains.Annotations" Version =" 2022.1.0" PrivateAssets =" All" />
24
24
</ItemGroup >
25
25
<ItemGroup >
Original file line number Diff line number Diff line change @@ -139,7 +139,9 @@ void ConfigureHttpMessageHandler(HttpClientHandler handler) {
139
139
handler . AutomaticDecompression = Options . AutomaticDecompression ;
140
140
handler . PreAuthenticate = Options . PreAuthenticate ;
141
141
handler . AllowAutoRedirect = Options . FollowRedirects ;
142
- handler . Proxy = Options . Proxy ;
142
+
143
+ if ( handler . SupportsProxy )
144
+ handler . Proxy = Options . Proxy ;
143
145
144
146
if ( Options . RemoteCertificateValidationCallback != null )
145
147
handler . ServerCertificateCustomValidationCallback =
Original file line number Diff line number Diff line change 8
8
</PropertyGroup >
9
9
10
10
<ItemGroup Condition =" $(IsTestProject) == 'true'" >
11
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.2.0 " />
11
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.3.1 " />
12
12
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.5" PrivateAssets =" All" />
13
13
<PackageReference Include =" coverlet.collector" Version =" 3.1.2" />
14
14
</ItemGroup >
18
18
<PackageReference Include =" FluentAssertions" Version =" 6.7.0" />
19
19
</ItemGroup >
20
20
<ItemGroup Condition =" $(TargetFramework) == 'net472'" >
21
- <PackageReference Include =" Microsoft.NETFramework.ReferenceAssemblies.net472" Version =" 1.0.2 " PrivateAssets =" All" />
21
+ <PackageReference Include =" Microsoft.NETFramework.ReferenceAssemblies.net472" Version =" 1.0.3 " PrivateAssets =" All" />
22
22
</ItemGroup >
23
23
24
24
<ItemGroup >
You can’t perform that action at this time.
0 commit comments