forked from MicrosoftLearning/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.
Updating dotnet to 8.0 and sync project
- Loading branch information
1 parent
0994ae3
commit c656d9b
Showing
163 changed files
with
1,732 additions
and
968 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
* text=auto eol=lf | ||
*.{cmd,[cC][mM][dD]} text eol=crlf | ||
*.{bat,[bB][aA][tT]} text eol=crlf |
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "nuget" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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,23 @@ | ||
name: eShopOnWeb Build and Test | ||
|
||
#Triggers (uncomment line below to use it) | ||
#on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '8.0.x' | ||
include-prerelease: true | ||
|
||
- name: Build with dotnet | ||
run: dotnet build ./eShopOnWeb.sln --configuration Release | ||
|
||
- name: Test with dotnet | ||
run: dotnet test ./eShopOnWeb.sln --configuration Release |
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,24 @@ | ||
name: eShopOnWeb - Code Index | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Build with dotnet | ||
run: dotnet build ./Everything.sln --configuration Release /bl | ||
|
||
- uses: microsoft/[email protected] | ||
with: | ||
repo-token: ${{ github.token }} | ||
languages: 'csharp' | ||
environment: 'internal' |
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 |
---|---|---|
|
@@ -257,3 +257,6 @@ pub/ | |
|
||
#Ignore marker-file used to know which docker files we have. | ||
.eshopdocker_* | ||
.devcontainer | ||
|
||
.azure |
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,72 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<AspNetVersion>8.0.0</AspNetVersion> | ||
<SystemExtensionVersion>8.0.0</SystemExtensionVersion> | ||
<EntityFramworkCoreVersion>8.0.0</EntityFramworkCoreVersion> | ||
<VSCodeGeneratorVersion>8.0.0</VSCodeGeneratorVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageVersion Include="Ardalis.ApiEndpoints" Version="4.0.1" /> | ||
<PackageVersion Include="Ardalis.GuardClauses" Version="4.0.1" /> | ||
<PackageVersion Include="Ardalis.Specification.EntityFrameworkCore" Version="7.0.0" /> | ||
<PackageVersion Include="Ardalis.Result" Version="7.0.0" /> | ||
<PackageVersion Include="Ardalis.Specification" Version="7.0.0" /> | ||
<PackageVersion Include="Ardalis.ListStartupServices" Version="1.1.4" /> | ||
<PackageVersion Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.2.1" /> | ||
<PackageVersion Include="Azure.Identity" Version="1.9.0-beta.2" /> | ||
<PackageVersion Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" /> | ||
<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.9.0" /> | ||
<PackageVersion Include="MediatR" Version="12.0.1" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.Authorization" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="$(AspNetVersion)" PrivateAssets="all" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Identity.UI" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Identity.Core" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.Extensions.Logging.Configuration" Version="$(SystemExtensionVersion)" /> | ||
<PackageVersion Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="$(VSCodeGeneratorVersion)" /> | ||
<PackageVersion Include="Microsoft.Web.LibraryManager.Build" Version="2.1.175" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(EntityFramworkCoreVersion)" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(EntityFramworkCoreVersion)" /> | ||
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="$(EntityFramworkCoreVersion)"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageVersion> | ||
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.18.1" /> | ||
<PackageVersion Include="MinimalApi.Endpoint" Version="1.3.0" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.16" /> | ||
<PackageVersion Include="System.Net.Http.Json" Version="$(SystemExtensionVersion)" /> | ||
<PackageVersion Include="System.Security.Claims" Version="4.3.0" /> | ||
<PackageVersion Include="System.Text.Json" Version="$(SystemExtensionVersion)" /> | ||
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="7.0.3" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore" Version="6.5.0" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" /> | ||
<PackageVersion Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" /> | ||
<!-- Test --> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(AspNetVersion)" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageVersion Include="xunit" Version="2.6.4" /> | ||
<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.6.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageVersion> | ||
<PackageVersion Include="MSTest.TestAdapter" Version="3.0.2" /> | ||
<PackageVersion Include="MSTest.TestFramework" Version="3.1.1" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.0" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.