forked from dotnet-architecture/eShopOnWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ASP.NET Core Version to 2.10 to 2.1.3 (dotnet-architecture#126)
* Updated Web Applications' NuGet Packages: - [x] Microsoft.AspNetCore.App 2.1.0->2.1.3 - [x] Microsoft.EntityFrameworkCore.Tools 2.1.0->2.1.2 - [x] Microsoft.VisualStudio.Web.CodeGeneration.Design 2.1.0->2.1.3 * Updated Infrastructure Library's BuGet Packages: - [x] Microsoft.AspNetCore.Identity 2.1.0->2.1.3 - [x] Microsoft.AspNetCore.Identity.EntityFrameworkCore 2.1.0->2.1.3 - [x] Microsoft.EntityFrameworkCore.SqlServer 2.1.0->2.1.2 - [x] Microsoft.EntityFrameworkCore.Tools 2.1.0->2.1.2 * Updated Test projects' NuGetPackages: - [x] Microsoft.AspNetCore.Mvc.Testing 2.1.0->2.1.2 - [x] Microsoft.NET.Test.Sdk 15.8.0-preview-20180510-03->15.8.0 - [x] Microsoft.AspNetCore.Mvc 2.1.0->2.1.3
- Loading branch information
1 parent
7b24c91
commit 1b5b179
Showing
7 changed files
with
131 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.ApplicationCore</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.ApplicationCore</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Ardalis.GuardClauses" Version="1.2.3" /> | ||
<PackageReference Include="System.Security.Claims" Version="4.3.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Ardalis.GuardClauses" Version="1.2.3" /> | ||
<PackageReference Include="System.Security.Claims" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.Infrastructure</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.Infrastructure</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Data\Migrations\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.3" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.1.3" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.1.2" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.2" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Data\Migrations\" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.Web</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.Web</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Dapper" Version="1.50.5" /> | ||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.0" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Views\Catalog\" /> | ||
<Folder Include="wwwroot\fonts\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="wwwroot\images\products\1.png" /> | ||
<None Include="wwwroot\images\products\10.png" /> | ||
<None Include="wwwroot\images\products\11.png" /> | ||
<None Include="wwwroot\images\products\12.png" /> | ||
<None Include="wwwroot\images\products\2.png" /> | ||
<None Include="wwwroot\images\products\3.png" /> | ||
<None Include="wwwroot\images\products\4.png" /> | ||
<None Include="wwwroot\images\products\5.png" /> | ||
<None Include="wwwroot\images\products\6.png" /> | ||
<None Include="wwwroot\images\products\7.png" /> | ||
<None Include="wwwroot\images\products\8.png" /> | ||
<None Include="wwwroot\images\products\9.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Update="appsettings.json"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Dapper" Version="1.50.5" /> | ||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.3" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.2" PrivateAssets="All" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.3" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Views\Catalog\" /> | ||
<Folder Include="wwwroot\fonts\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="wwwroot\images\products\1.png" /> | ||
<None Include="wwwroot\images\products\10.png" /> | ||
<None Include="wwwroot\images\products\11.png" /> | ||
<None Include="wwwroot\images\products\12.png" /> | ||
<None Include="wwwroot\images\products\2.png" /> | ||
<None Include="wwwroot\images\products\3.png" /> | ||
<None Include="wwwroot\images\products\4.png" /> | ||
<None Include="wwwroot\images\products\5.png" /> | ||
<None Include="wwwroot\images\products\6.png" /> | ||
<None Include="wwwroot\images\products\7.png" /> | ||
<None Include="wwwroot\images\products\8.png" /> | ||
<None Include="wwwroot\images\products\9.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Update="appsettings.json"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.RazorPages</RootNamespace> | ||
<AssemblyName>Microsoft.eShopWeb.RazorPages</AssemblyName> | ||
<DockerTargetOS>Linux</DockerTargetOS> | ||
<UserSecretsId>231ddc1b-6787-4704-a0c0-18df6a022660</UserSecretsId> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.RazorPages</RootNamespace> | ||
<AssemblyName>Microsoft.eShopWeb.RazorPages</AssemblyName> | ||
<DockerTargetOS>Linux</DockerTargetOS> | ||
<UserSecretsId>231ddc1b-6787-4704-a0c0-18df6a022660</UserSecretsId> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.3" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.FunctionalTests</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.FunctionalTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0-preview-20180510-03" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.1.2" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\..\src\WebRazorPages\WebRazorPages.csproj" /> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\..\src\WebRazorPages\WebRazorPages.csproj" /> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.IntegrationTests</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.IntegrationTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0-preview-20180510-03" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
<PackageReference Include="Moq" Version="4.8.2" /> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
<PackageReference Include="Moq" Version="4.8.2" /> | ||
|
||
</ItemGroup> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
<ProjectReference Include="..\UnitTests\UnitTests.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
<ProjectReference Include="..\UnitTests\UnitTests.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.UnitTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0-preview-20180510-03" /> | ||
<PackageReference Include="Moq" Version="4.8.2" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>Microsoft.eShopWeb.UnitTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.2" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | ||
<PackageReference Include="Moq" Version="4.8.2" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.console" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\ApplicationCore\ApplicationCore.csproj" /> | ||
<ProjectReference Include="..\..\src\Web\Web.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |