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

Commit e76f672

Browse files
committed
net461 target removed, since netstandard 2.0 supports that
1 parent b060076 commit e76f672

12 files changed

+60
-173
lines changed

examples/Titanium.Web.Proxy.Examples.Basic/Titanium.Web.Proxy.Examples.Basic.NetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\..\src\Titanium.Web.Proxy\Titanium.Web.Proxy.NetCore.csproj" />
15+
<ProjectReference Include="..\..\src\Titanium.Web.Proxy\Titanium.Web.Proxy.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

examples/Titanium.Web.Proxy.Examples.Basic/Titanium.Web.Proxy.Examples.Basic.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<TargetFrameworks>net461;netcoreapp2.1</TargetFrameworks>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
77
<LangVersion>7.1</LangVersion>
8-
<Platforms>AnyCPU;x64</Platforms>
98
</PropertyGroup>
109

1110
<PropertyGroup>

examples/Titanium.Web.Proxy.Examples.Wpf/MainWindow.xaml.cs

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public MainWindow()
3939
{
4040
proxyServer = new ProxyServer();
4141

42-
proxyServer.EnableHttp2 = true;
42+
//proxyServer.EnableHttp2 = true;
4343

4444
//proxyServer.CertificateManager.CertificateEngine = CertificateEngine.DefaultWindows;
4545

@@ -152,21 +152,9 @@ await Dispatcher.InvokeAsync(() =>
152152

153153
private async Task ProxyServer_BeforeRequest(object sender, SessionEventArgs e)
154154
{
155-
if (e.HttpClient.ConnectRequest?.TunnelType != TunnelType.Http2)
156-
{
157-
return;
158-
}
159-
160155
SessionListItem item = null;
161156
await Dispatcher.InvokeAsync(() => { item = addSession(e); });
162157

163-
//if (e.HttpClient.ConnectRequest?.TunnelType == TunnelType.Http2)
164-
//{
165-
//}
166-
167-
//if (!e.HttpClient.Request.RequestUri.ToString().Contains("/mail/u/"))
168-
// return;
169-
170158
if (e.HttpClient.Request.HasBody)
171159
{
172160
e.HttpClient.Request.KeepBody = true;
@@ -176,11 +164,6 @@ private async Task ProxyServer_BeforeRequest(object sender, SessionEventArgs e)
176164

177165
private async Task ProxyServer_BeforeResponse(object sender, SessionEventArgs e)
178166
{
179-
if (e.HttpClient.ConnectRequest?.TunnelType != TunnelType.Http2)
180-
{
181-
return;
182-
}
183-
184167
SessionListItem item = null;
185168
await Dispatcher.InvokeAsync(() =>
186169
{

examples/Titanium.Web.Proxy.Examples.Wpf/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Titanium.Web.Proxy.Examples.Wpf/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/Titanium.Web.Proxy.Examples.Wpf/Titanium.Web.Proxy.Examples.Wpf.NetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
66
<UseWPF>true</UseWPF>
77
</PropertyGroup>
88

Lines changed: 31 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,67 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2+
43
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{4406CE17-9A39-4F28-8363-6169A4F799C1}</ProjectGuid>
84
<OutputType>WinExe</OutputType>
9-
<RootNamespace>Titanium.Web.Proxy.Examples.Wpf</RootNamespace>
10-
<AssemblyName>Titanium.Web.Proxy.Examples.Wpf</AssemblyName>
11-
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12-
<FileAlignment>512</FileAlignment>
13-
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14-
<WarningLevel>4</WarningLevel>
15-
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16-
<TargetFrameworkProfile />
17-
<PublishUrl>publish\</PublishUrl>
18-
<Install>true</Install>
19-
<InstallFrom>Disk</InstallFrom>
20-
<UpdateEnabled>false</UpdateEnabled>
21-
<UpdateMode>Foreground</UpdateMode>
22-
<UpdateInterval>7</UpdateInterval>
23-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
24-
<UpdatePeriodically>false</UpdatePeriodically>
25-
<UpdateRequired>false</UpdateRequired>
26-
<MapFileExtensions>true</MapFileExtensions>
27-
<ApplicationRevision>0</ApplicationRevision>
28-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29-
<IsWebBootstrapper>false</IsWebBootstrapper>
30-
<UseApplicationTrust>false</UseApplicationTrust>
31-
<BootstrapperEnabled>true</BootstrapperEnabled>
5+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
6+
<UseWPF>true</UseWPF>
327
</PropertyGroup>
33-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34-
<PlatformTarget>AnyCPU</PlatformTarget>
35-
<DebugSymbols>true</DebugSymbols>
36-
<DebugType>full</DebugType>
37-
<Optimize>false</Optimize>
38-
<OutputPath>bin\Debug\</OutputPath>
39-
<DefineConstants>DEBUG;TRACE</DefineConstants>
40-
<ErrorReport>prompt</ErrorReport>
41-
<WarningLevel>4</WarningLevel>
42-
<LangVersion>7.1</LangVersion>
43-
</PropertyGroup>
44-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
45-
<PlatformTarget>AnyCPU</PlatformTarget>
46-
<DebugType>pdbonly</DebugType>
47-
<Optimize>true</Optimize>
48-
<OutputPath>bin\Release\</OutputPath>
49-
<DefineConstants>TRACE</DefineConstants>
50-
<ErrorReport>prompt</ErrorReport>
51-
<WarningLevel>4</WarningLevel>
52-
</PropertyGroup>
53-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
54-
<DebugSymbols>true</DebugSymbols>
55-
<OutputPath>bin\x64\Debug\</OutputPath>
56-
<DefineConstants>DEBUG;TRACE</DefineConstants>
57-
<DebugType>full</DebugType>
58-
<PlatformTarget>x64</PlatformTarget>
59-
<LangVersion>7.1</LangVersion>
60-
<ErrorReport>prompt</ErrorReport>
61-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
62-
<Prefer32Bit>true</Prefer32Bit>
63-
</PropertyGroup>
64-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
65-
<OutputPath>bin\x64\Release\</OutputPath>
66-
<DefineConstants>TRACE</DefineConstants>
67-
<Optimize>true</Optimize>
68-
<DebugType>pdbonly</DebugType>
69-
<PlatformTarget>x64</PlatformTarget>
70-
<ErrorReport>prompt</ErrorReport>
71-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
72-
<Prefer32Bit>true</Prefer32Bit>
73-
</PropertyGroup>
74-
<ItemGroup>
75-
<Reference Include="System" />
76-
<Reference Include="System.Data" />
77-
<Reference Include="System.Xml" />
78-
<Reference Include="Microsoft.CSharp" />
79-
<Reference Include="System.Core" />
80-
<Reference Include="System.Xml.Linq" />
81-
<Reference Include="System.Data.DataSetExtensions" />
82-
<Reference Include="System.Net.Http" />
83-
<Reference Include="System.Xaml">
84-
<RequiredTargetFramework>4.0</RequiredTargetFramework>
85-
</Reference>
86-
<Reference Include="WindowsBase" />
8+
9+
<!--<ItemGroup>
8710
<Reference Include="PresentationCore" />
8811
<Reference Include="PresentationFramework" />
12+
<Reference Include="WindowsBase" />
13+
</ItemGroup>-->
14+
15+
<ItemGroup>
16+
<Compile Remove="Properties\AssemblyInfo.cs" />
8917
</ItemGroup>
18+
9019
<ItemGroup>
20+
<ProjectReference Include="..\..\src\Titanium.Web.Proxy\Titanium.Web.Proxy.csproj" />
21+
</ItemGroup>
22+
23+
<!--<ItemGroup>
9124
<ApplicationDefinition Include="App.xaml">
9225
<Generator>MSBuild:Compile</Generator>
9326
<SubType>Designer</SubType>
9427
</ApplicationDefinition>
95-
<Compile Include="ObservableCollectionEx.cs" />
96-
<Compile Include="Properties\Annotations.cs" />
97-
<Compile Include="SessionListItem.cs" />
9828
<Page Include="MainWindow.xaml">
9929
<Generator>MSBuild:Compile</Generator>
10030
<SubType>Designer</SubType>
10131
</Page>
102-
<Compile Include="App.xaml.cs">
32+
<Compile Update="App.xaml.cs">
10333
<DependentUpon>App.xaml</DependentUpon>
104-
<SubType>Code</SubType>
10534
</Compile>
106-
<Compile Include="MainWindow.xaml.cs">
35+
<Compile Update="MainWindow.xaml.cs">
10736
<DependentUpon>MainWindow.xaml</DependentUpon>
108-
<SubType>Code</SubType>
10937
</Compile>
11038
</ItemGroup>
39+
11140
<ItemGroup>
112-
<Compile Include="Properties\AssemblyInfo.cs">
113-
<SubType>Code</SubType>
114-
</Compile>
115-
<Compile Include="Properties\Resources.Designer.cs">
41+
<Compile Update="Properties\Resources.Designer.cs">
11642
<AutoGen>True</AutoGen>
11743
<DesignTime>True</DesignTime>
11844
<DependentUpon>Resources.resx</DependentUpon>
11945
</Compile>
120-
<Compile Include="Properties\Settings.Designer.cs">
46+
<Compile Update="Properties\Settings.Designer.cs">
12147
<AutoGen>True</AutoGen>
12248
<DependentUpon>Settings.settings</DependentUpon>
12349
<DesignTimeSharedInput>True</DesignTimeSharedInput>
12450
</Compile>
125-
<EmbeddedResource Include="Properties\Resources.resx">
51+
<EmbeddedResource Update="Properties\Resources.resx">
12652
<Generator>ResXFileCodeGenerator</Generator>
12753
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
12854
</EmbeddedResource>
129-
<None Include="Properties\Settings.settings">
55+
<None Update="App.xaml">
56+
<Generator>MSBuild:Compile</Generator>
57+
</None>
58+
<None Update="MainWindow.xaml">
59+
<Generator>MSBuild:Compile</Generator>
60+
</None>
61+
<None Update="Properties\Settings.settings">
13062
<Generator>SettingsSingleFileGenerator</Generator>
13163
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
13264
</None>
133-
</ItemGroup>
134-
<ItemGroup>
135-
<None Include="App.config" />
136-
</ItemGroup>
137-
<ItemGroup>
138-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
139-
<Visible>False</Visible>
140-
<ProductName>.NET Framework 3.5 SP1</ProductName>
141-
<Install>false</Install>
142-
</BootstrapperPackage>
143-
</ItemGroup>
144-
<ItemGroup>
145-
<ProjectReference Include="..\..\src\Titanium.Web.Proxy\Titanium.Web.Proxy.csproj">
146-
<Project>{91018b6d-a7a9-45be-9cb3-79cbb8b169a6}</Project>
147-
<Name>Titanium.Web.Proxy</Name>
148-
</ProjectReference>
149-
</ItemGroup>
150-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
65+
</ItemGroup>-->
66+
15167
</Project>

src/Titanium.Web.Proxy.sln

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Titanium.Web.Proxy.UnitTest
2727
EndProject
2828
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Titanium.Web.Proxy.Examples.Basic", "..\examples\Titanium.Web.Proxy.Examples.Basic\Titanium.Web.Proxy.Examples.Basic.csproj", "{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}"
2929
EndProject
30-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Titanium.Web.Proxy.Examples.Wpf", "..\examples\Titanium.Web.Proxy.Examples.Wpf\Titanium.Web.Proxy.Examples.Wpf.csproj", "{4406CE17-9A39-4F28-8363-6169A4F799C1}"
30+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Titanium.Web.Proxy.Examples.Wpf", "..\examples\Titanium.Web.Proxy.Examples.Wpf\Titanium.Web.Proxy.Examples.Wpf.csproj", "{4406CE17-9A39-4F28-8363-6169A4F799C1}"
3131
EndProject
3232
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Titanium.Web.Proxy.IntegrationTests", "..\tests\Titanium.Web.Proxy.IntegrationTests\Titanium.Web.Proxy.IntegrationTests.csproj", "{1D053D72-DCB4-4517-ACDD-D35ADC186950}"
3333
EndProject
@@ -41,12 +41,12 @@ Global
4141
GlobalSection(ProjectConfigurationPlatforms) = postSolution
4242
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4343
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|Any CPU.Build.0 = Debug|Any CPU
44-
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|x64.ActiveCfg = Debug|x64
45-
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|x64.Build.0 = Debug|x64
44+
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|x64.ActiveCfg = Debug|Any CPU
45+
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Debug|x64.Build.0 = Debug|Any CPU
4646
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|Any CPU.ActiveCfg = Release|Any CPU
4747
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|Any CPU.Build.0 = Release|Any CPU
48-
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|x64.ActiveCfg = Release|x64
49-
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|x64.Build.0 = Release|x64
48+
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|x64.ActiveCfg = Release|Any CPU
49+
{91018B6D-A7A9-45BE-9CB3-79CBB8B169A6}.Release|x64.Build.0 = Release|Any CPU
5050
{B517E3D0-D03B-436F-AB03-34BA0D5321AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5151
{B517E3D0-D03B-436F-AB03-34BA0D5321AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
5252
{B517E3D0-D03B-436F-AB03-34BA0D5321AF}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -57,20 +57,20 @@ Global
5757
{B517E3D0-D03B-436F-AB03-34BA0D5321AF}.Release|x64.Build.0 = Release|Any CPU
5858
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5959
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
60-
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|x64.ActiveCfg = Debug|x64
61-
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|x64.Build.0 = Debug|x64
60+
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|x64.ActiveCfg = Debug|Any CPU
61+
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Debug|x64.Build.0 = Debug|Any CPU
6262
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
6363
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|Any CPU.Build.0 = Release|Any CPU
64-
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|x64.ActiveCfg = Release|x64
65-
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|x64.Build.0 = Release|x64
64+
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|x64.ActiveCfg = Release|Any CPU
65+
{1FAC4205-4445-4F2B-BB8F-618E8A0C15FD}.Release|x64.Build.0 = Release|Any CPU
6666
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
6767
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
68-
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|x64.ActiveCfg = Debug|x64
69-
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|x64.Build.0 = Debug|x64
68+
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|x64.ActiveCfg = Debug|Any CPU
69+
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Debug|x64.Build.0 = Debug|Any CPU
7070
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
7171
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|Any CPU.Build.0 = Release|Any CPU
72-
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|x64.ActiveCfg = Release|x64
73-
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|x64.Build.0 = Release|x64
72+
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|x64.ActiveCfg = Release|Any CPU
73+
{4406CE17-9A39-4F28-8363-6169A4F799C1}.Release|x64.Build.0 = Release|Any CPU
7474
{1D053D72-DCB4-4517-ACDD-D35ADC186950}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7575
{1D053D72-DCB4-4517-ACDD-D35ADC186950}.Debug|Any CPU.Build.0 = Debug|Any CPU
7676
{1D053D72-DCB4-4517-ACDD-D35ADC186950}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -90,7 +90,7 @@ Global
9090
{1D053D72-DCB4-4517-ACDD-D35ADC186950} = {BC1E0789-D348-49CF-8B67-5E99D50EDF64}
9191
EndGlobalSection
9292
GlobalSection(ExtensibilityGlobals) = postSolution
93-
SolutionGuid = {625C1EB5-44CF-47DE-A85A-B4C8C40ED90A}
9493
EnterpriseLibraryConfigurationToolBinariesPath = .1.505.2\lib\NET35
94+
SolutionGuid = {625C1EB5-44CF-47DE-A85A-B4C8C40ED90A}
9595
EndGlobalSection
9696
EndGlobal

src/Titanium.Web.Proxy/StreamExtended/Network/CustomBufferedStream.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ public bool FillBuffer()
456456
if (bufferLength > 0)
457457
{
458458
//normally we fill the buffer only when it is empty, but sometimes we need more data
459-
//move the remanining data to the beginning of the buffer
459+
//move the remaining data to the beginning of the buffer
460460
Buffer.BlockCopy(streamBuffer, bufferPos, streamBuffer, 0, bufferLength);
461461
}
462462

@@ -516,7 +516,8 @@ public async Task<bool> FillBufferAsync(CancellationToken cancellationToken = de
516516
else
517517
{
518518
closed = true;
519-
throw new EndOfStreamException();
519+
520+
// do not throw exception here
520521
}
521522

522523
return result;

src/Titanium.Web.Proxy/Titanium.Web.Proxy.NetCore.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
55
<RootNamespace>Titanium.Web.Proxy</RootNamespace>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
77
<SignAssembly>True</SignAssembly>
@@ -18,26 +18,22 @@
1818

1919
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
2020
<PackageReference Include="Microsoft.Win32.Registry">
21-
<Version>4.4.0</Version>
21+
<Version>4.5.0</Version>
2222
</PackageReference>
2323
<PackageReference Include="System.Security.Principal.Windows">
24-
<Version>4.4.1</Version>
24+
<Version>4.5.1</Version>
2525
</PackageReference>
2626
</ItemGroup>
2727

2828
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
2929
<PackageReference Include="Microsoft.Win32.Registry">
30-
<Version>4.4.0</Version>
30+
<Version>4.5.0</Version>
3131
</PackageReference>
3232
<PackageReference Include="System.Security.Principal.Windows">
33-
<Version>4.4.1</Version>
33+
<Version>4.5.1</Version>
3434
</PackageReference>
3535
</ItemGroup>
3636

37-
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
38-
<Reference Include="System.Web" />
39-
</ItemGroup>
40-
4137
<ItemGroup>
4238
<Compile Update="Network\WinAuth\Security\Common.cs">
4339
<ExcludeFromSourceAnalysis>True</ExcludeFromSourceAnalysis>

0 commit comments

Comments
 (0)