Skip to content

Commit

Permalink
fix: explicit using for system.net.http to avoid conflicts with older…
Browse files Browse the repository at this point in the history
… frameworks (#553)
  • Loading branch information
Tr00d authored Nov 20, 2023
1 parent feb99ee commit 55a09bc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions Vonage.Common.Test/Client/VonageHttpClientTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using AutoFixture;
using FsCheck;
Expand Down
3 changes: 2 additions & 1 deletion Vonage.Common.Test/Client/VonageRequestBuilderTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using AutoFixture;
using System.Net.Http;
using AutoFixture;
using FluentAssertions;
using Vonage.Common.Client;

Expand Down
3 changes: 2 additions & 1 deletion Vonage.Common.Test/ExpectedRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Vonage.Common.Monads;
using System.Net.Http;
using Vonage.Common.Monads;

namespace Vonage.Common.Test
{
Expand Down
1 change: 1 addition & 0 deletions Vonage.Common.Test/TestHelpers/CustomHttpMessageHandler.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.Collections.ObjectModel;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using AutoFixture;
Expand Down
1 change: 1 addition & 0 deletions Vonage.Common.Test/TestHelpers/FakeHttpMessageHandler.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using FluentAssertions;
Expand Down

0 comments on commit 55a09bc

Please sign in to comment.