Skip to content

Commit c8e2e74

Browse files
Merge pull request #64 from AikidoSec/fix-unlisted-package-version--downgrade-Microsoft.Web.Infrastructure
version downgrade (unlisted version)
2 parents 045240b + 9ae2c8e commit c8e2e74

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Aikido.Zen.DotNetFramework/Aikido.Zen.DotNetFramework.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@
112112
<Reference Include="Microsoft.IdentityModel.Tokens, Version=6.35.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
113113
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.35.0\lib\net472\Microsoft.IdentityModel.Tokens.dll</HintPath>
114114
</Reference>
115-
<Reference Include="Microsoft.Web.Infrastructure, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
116-
<HintPath>..\packages\Microsoft.Web.Infrastructure.2.0.1\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
115+
<Reference Include="Microsoft.Web.Infrastructure, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
116+
<HintPath>..\packages\Microsoft.Web.Infrastructure.2.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
117117
</Reference>
118118
<Reference Include="MySql.Data, Version=9.1.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
119119
<HintPath>..\packages\MySql.Data.9.1.0\lib\net48\MySql.Data.dll</HintPath>

Aikido.Zen.DotNetFramework/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<package id="Microsoft.IdentityModel.Protocols" version="6.35.0" targetFramework="net48" />
2828
<package id="Microsoft.IdentityModel.Protocols.OpenIdConnect" version="6.35.0" targetFramework="net48" />
2929
<package id="Microsoft.IdentityModel.Tokens" version="6.35.0" targetFramework="net48" />
30-
<package id="Microsoft.Web.Infrastructure" version="2.0.1" targetFramework="net48" />
30+
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net48" />
3131
<package id="MySql.Data" version="9.1.0" targetFramework="net48" />
3232
<package id="MySqlConnector" version="2.4.0" targetFramework="net48" />
3333
<package id="Npgsql" version="4.1.14" targetFramework="net48" />

sample-apps/DotNetFramework.Sample.App/DotNetFramework.Sample.App.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,9 @@
389389
<Reference Include="System.Xml" />
390390
<Reference Include="System.Configuration" />
391391
<Reference Include="System.Runtime.Serialization" />
392-
<Reference Include="Microsoft.Web.Infrastructure, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
392+
<Reference Include="Microsoft.Web.Infrastructure, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
393393
<Private>True</Private>
394-
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.2.0.1\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
394+
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.2.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
395395
</Reference>
396396
<Reference Include="Newtonsoft.Json">
397397
<HintPath>..\..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
@@ -513,4 +513,4 @@
513513
Other similar extension points exist, see Microsoft.Common.targets.
514514
<Target Name="BeforeBuild">
515515
</Target> -->
516-
</Project>
516+
</Project>

sample-apps/DotNetFramework.Sample.App/Web.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</dependentAssembly>
4343
<dependentAssembly>
4444
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" />
45-
<bindingRedirect oldVersion="0.0.0.0-2.0.1.0" newVersion="2.0.1.0" />
45+
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
4646
</dependentAssembly>
4747
<dependentAssembly>
4848
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
@@ -161,4 +161,4 @@
161161
<remove name="TRACEVerbHandler" />
162162
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
163163
</handlers>
164-
</system.webServer></configuration>
164+
</system.webServer></configuration>

sample-apps/DotNetFramework.Sample.App/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<package id="Microsoft.IdentityModel.Protocols" version="6.35.0" targetFramework="net48" />
5959
<package id="Microsoft.IdentityModel.Protocols.OpenIdConnect" version="6.35.0" targetFramework="net48" />
6060
<package id="Microsoft.IdentityModel.Tokens" version="6.35.0" targetFramework="net48" />
61-
<package id="Microsoft.Web.Infrastructure" version="2.0.1" targetFramework="net48" />
61+
<package id="Microsoft.Web.Infrastructure" version="2.0.0" targetFramework="net48" />
6262
<package id="Microsoft.Win32.Registry" version="5.0.0" targetFramework="net48" />
6363
<package id="Modernizr" version="2.8.3" targetFramework="net48" />
6464
<package id="MySql.Data" version="9.1.0" targetFramework="net48" />
@@ -112,4 +112,4 @@
112112
<package id="System.ValueTuple" version="4.5.0" targetFramework="net48" />
113113
<package id="WebGrease" version="1.6.0" targetFramework="net48" />
114114
<package id="ZstdSharp.Port" version="0.8.0" targetFramework="net48" />
115-
</packages>
115+
</packages>

0 commit comments

Comments
 (0)