Skip to content
This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Commit 9d759b1

Browse files
committed
Merge branch 'develop' into beta
2 parents a07bc3d + 400ca56 commit 9d759b1

21 files changed

+39
-177
lines changed

src/Titanium.Web.Proxy.Mono.sln

Lines changed: 0 additions & 61 deletions
This file was deleted.

src/Titanium.Web.Proxy/EventArguments/SessionEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ public void Redirect(string url, bool closeServerConnection = false)
606606
var response = new RedirectResponse();
607607
response.HttpVersion = HttpClient.Request.HttpVersion;
608608
response.Headers.AddHeader(KnownHeaders.Location, url);
609-
#if NET45
609+
#if NET451
610610
response.Body = Net45Compatibility.EmptyArray;
611611
#else
612612
response.Body = Array.Empty<byte>();

src/Titanium.Web.Proxy/Helpers/Net45Compatibility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if NET45
1+
#if NET451
22
using System;
33
using System.Threading.Tasks;
44

src/Titanium.Web.Proxy/Helpers/RunTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class RunTime
1313
{
1414
private static readonly Lazy<bool> isRunningOnMono = new Lazy<bool>(() => Type.GetType("Mono.Runtime") != null);
1515

16-
#if NET45 || NET461
16+
#if NET451 || NET461
1717
/// <summary>
1818
/// cache for Windows platform check
1919
/// </summary>

0 commit comments

Comments
 (0)