Skip to content

Commit

Permalink
nopSolutions#4379 Upgrade .NET Core to version 3.1.201
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyKulagin committed Mar 31, 2020
1 parent 142e052 commit 1b2f516
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "3.1.102",
"version": "3.1.201",
"rollForward": "latestFeature",
"allowPrerelease": false
}
Expand Down
2 changes: 1 addition & 1 deletion src/Libraries/Nop.Core/Nop.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.4.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.1.0" />
<PackageReference Include="RedLock.net.StrongName" Version="2.1.0" />
<PackageReference Include="Humanizer" Version="2.7.9" />
Expand Down
4 changes: 2 additions & 2 deletions src/Libraries/Nop.Services/Nop.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

<ItemGroup>
<PackageReference Include="EPPlus" Version="5.0.4" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.6.3" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.6.5" />
<PackageReference Include="MailKit" Version="2.5.2" />
<PackageReference Include="MaxMind.GeoIP2" Version="3.1.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0006" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.0.22" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.0.23" />
<PackageReference Include="System.ServiceModel.Http" Version="4.7.0" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.3" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" Version="3.1.3" />
</ItemGroup>

<!-- This target execute after "Build" target -->
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/Nop.Plugin.ExternalAuth.Facebook/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Group": "ExternalAuth methods",
"FriendlyName": "Facebook authentication",
"SystemName": "ExternalAuth.Facebook",
"Version": "1.61",
"Version": "1.62",
"SupportedVersions": [ "4.30" ],
"Author": "nopCommerce team",
"DisplayOrder": 5,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
using System.Net;
using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.AspNetCore.Mvc.Infrastructure;
using Microsoft.AspNetCore.Mvc.Razor;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;
using Nop.Core;
using Nop.Core.Infrastructure;
Expand Down
6 changes: 3 additions & 3 deletions src/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<ItemGroup>
<PackageReference Include="BundlerMinifier.Core" Version="3.2.435" />
<PackageReference Include="FluentValidation.AspNetCore" Version="8.6.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.AzureKeyVault" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.AzureStorage" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.AzureKeyVault" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.AzureStorage" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.3" />
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.4.0" />
<PackageReference Include="WebMarkupMin.AspNetCore3" Version="2.8.2" />
<PackageReference Include="WebMarkupMin.NUglify" Version="2.8.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Nop.Tests/Nop.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.2" />
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="NUnit" Version="3.12.0" />
Expand Down

0 comments on commit 1b2f516

Please sign in to comment.