Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Activout.RestClient.Test/Activout.RestClient.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<IsPackable>false</IsPackable>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS0618;CS0619</WarningsNotAsErrors>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/BodyArgumentFormPostTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/CancellationTokenBodyTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Net;
using System.Net.Http;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/DictionaryParameterTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections;
using System.Collections.Generic;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/ErrorResponseTextPlainTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/HttpRequestMessageCollector.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Net.Http;

namespace Activout.RestClient.Test
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/HttpResponseMessageTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Net;
using System.Net.Http;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/HttpStatusCodeTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Net;
using System.Net.Http;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/LoggerFactoryHelpers.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using Microsoft.Extensions.Logging;
using Xunit.Abstractions;

Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/MediaTypeTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using Xunit;

Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/MovieReviews/ErrorResponse.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Collections.Generic;

namespace Activout.RestClient.Test.MovieReviews;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Diagnostics.CodeAnalysis;
using System.Net.Http;
using System.Threading;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/MultipartFormDataContentTest.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Linq;
using System.Net;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/NonJsonRestClientTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Linq;
using System.Net;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/NullParameterTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down
1 change: 1 addition & 0 deletions Activout.RestClient.Test/ParamConverterTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Reflection;
using Activout.RestClient.ParamConverter;
Expand Down
3 changes: 2 additions & 1 deletion Activout.RestClient.Test/RestClientExceptionTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
#nullable disable
using System;
using System.IO;
using System.Net;
using System.Runtime.Serialization.Formatters.Binary;
Expand Down
Loading