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.
Feature/dotnet7 migration (dotnet-architecture#828)
* migration to .net 7 * remove temp memory database * adapt global.json .net 7 * adapt Rich Code Navigation to .net 7 * update and clean run for .net 7 * update .net ef tool Co-authored-by: cedri <cedri@BAS>
- Loading branch information
1 parent
707f869
commit fdb1c34
Showing
22 changed files
with
198 additions
and
134 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="Ardalis.ApiEndpoints" Version="4.0.1" /> | ||
<PackageVersion Include="Ardalis.GuardClauses" Version="4.0.1" /> | ||
<PackageVersion Include="Ardalis.Specification.EntityFrameworkCore" Version="6.1.0" /> | ||
<PackageVersion Include="Ardalis.Result" Version="4.1.0" /> | ||
<PackageVersion Include="Ardalis.Specification" Version="6.1.0" /> | ||
<PackageVersion Include="Ardalis.ListStartupServices" Version="1.1.4" /> | ||
<PackageVersion Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" /> | ||
<PackageVersion Include="BlazorInputFile" Version="0.2.0" /> | ||
<PackageVersion Include="Blazored.LocalStorage" Version="4.3.0" /> | ||
<PackageVersion Include="BuildBundlerMinifier" Version="3.2.449" PrivateAssets="All" /> | ||
<PackageVersion Include="FluentValidation" Version="11.4.0" /> | ||
<PackageVersion Include="MediatR" Version="11.1.0" /> | ||
<PackageVersion Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="11.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.Authorization" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.1" PrivateAssets="all" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Identity.Core" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Configuration" Version="7.0.0" /> | ||
<PackageVersion Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageVersion> | ||
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" /> | ||
<PackageVersion Include="MinimalApi.Endpoint" Version="1.2.0" /> | ||
<PackageVersion Include="System.Net.Http.Json" Version="7.0.0" /> | ||
<PackageVersion Include="System.Security.Claims" Version="4.3.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="7.0.1" /> | ||
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="6.25.1" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.4.0" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.4.0" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore.Annotations" Version="6.4.0" /> | ||
<!-- Test --> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.1" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.1" /> | ||
<PackageVersion Include="xunit" Version="2.4.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageVersion> | ||
<PackageVersion Include="xunit.runner.console" Version="2.4.2"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageVersion> | ||
<PackageVersion Include="Moq" Version="4.18.3" /> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="3.0.1" /> | ||
<PackageVersion Include="MSTest.TestFramework" Version="3.0.1" /> | ||
<PackageVersion Include="coverlet.collector" Version="3.2.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
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
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,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "6.0.x", | ||
"version": "7.0.x", | ||
"rollForward": "latestFeature" | ||
} | ||
} |
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
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
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,14 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<PropertyGroup> | ||
<RootNamespace>BlazorShared</RootNamespace> | ||
<AssemblyName>BlazorShared</AssemblyName> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BlazorInputFile" Version="0.2.0" /> | ||
<PackageReference Include="FluentValidation" Version="11.2.1" /> | ||
<PackageReference Include="BlazorInputFile" /> | ||
<PackageReference Include="FluentValidation" /> | ||
</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
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
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
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
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
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
Oops, something went wrong.