Skip to content

Commit 151e25a

Browse files
authored
Committed
1 parent 4f33236 commit 151e25a

File tree

874 files changed

+53551
-15786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

874 files changed

+53551
-15786
lines changed

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/src/Web/WebSPA/bin/Debug/net6.0/WebSPA.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/src/Web/WebSPA",
16+
"stopAtEntry": false,
17+
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
18+
"serverReadyAction": {
19+
"action": "openExternally",
20+
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
21+
},
22+
"env": {
23+
"ASPNETCORE_ENVIRONMENT": "Development"
24+
},
25+
"sourceFileMap": {
26+
"/Views": "${workspaceFolder}/Views"
27+
}
28+
},
29+
{
30+
"name": ".NET Core Attach",
31+
"type": "coreclr",
32+
"request": "attach"
33+
}
34+
]
35+
}

.vscode/tasks.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/Web/WebSPA/WebSPA.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/src/Web/WebSPA/WebSPA.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"${workspaceFolder}/src/Web/WebSPA/WebSPA.csproj",
36+
"/property:GenerateFullPaths=true",
37+
"/consoleloggerparameters:NoSummary"
38+
],
39+
"problemMatcher": "$msCompile"
40+
}
41+
]
42+
}

eShop-Learn.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.29709.97
@@ -82,7 +82,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Services", "Services", "{EB
8282
EndProject
8383
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Coupon", "Coupon", "{7183B377-4090-4EE9-85F9-1D8E0216F2B5}"
8484
EndProject
85-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Coupon.API.Tests", "tests\Services\Coupon\Coupon.API.Tests\Coupon.API.Tests.csproj", "{E94AAF90-B6A8-4410-9C0A-D1732585956B}"
85+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Coupon.API.Tests", "tests\Services\Coupon\Coupon.API.Tests\Coupon.API.Tests.csproj", "{E94AAF90-B6A8-4410-9C0A-D1732585956B}"
8686
ProjectSection(ProjectDependencies) = postProject
8787
{A9227F5B-8BC8-4869-B1F7-C6F40F4252E4} = {A9227F5B-8BC8-4869-B1F7-C6F40F4252E4}
8888
EndProjectSection
Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
32
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
54
<AssemblyName>Web.Shopping.HttpAggregator</AssemblyName>
65
<RootNamespace>Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator</RootNamespace>
76
<GenerateErrorForMissingTargetingPacks>false</GenerateErrorForMissingTargetingPacks>
@@ -11,11 +10,9 @@
1110
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
1211
<DockerfileContext>..\..\..\..</DockerfileContext>
1312
</PropertyGroup>
14-
1513
<ItemGroup>
1614
<Folder Include="wwwroot\" />
1715
</ItemGroup>
18-
1916
<ItemGroup>
2017
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="6.0.4" />
2118
<PackageReference Include="AspNetCore.HealthChecks.Uris" Version="6.0.3" />
@@ -24,23 +21,18 @@
2421
<PackageReference Include="Grpc.Core" Version="2.45.0" />
2522
<PackageReference Include="Grpc.Net.Client" Version="2.60.0" />
2623
<PackageReference Include="Grpc.Tools" Version="2.45.0" PrivateAssets="All" />
27-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.3" />
28-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.HealthChecks" Version="2.2.0" />
29-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.3" />
30-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="6.0.3" />
31-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.6" />
3224
<PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
3325
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
3426
<PackageReference Include="Serilog.Sinks.Seq" Version="4.0.0" />
3527
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.0" />
3628
<PackageReference Include="Swashbuckle.AspNetCore.Newtonsoft" Version="6.5.0" />
29+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
30+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.1" />
31+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="8.0.1" />
3732
</ItemGroup>
38-
3933
<ItemGroup>
4034
<Protobuf Include="..\..\..\Services\Basket\Basket.API\Proto\basket.proto" GrpcServices="Client" />
4135
<Protobuf Include="..\..\..\Services\Catalog\Catalog.API\Proto\catalog.proto" GrpcServices="Client" />
4236
<Protobuf Include="..\..\..\Services\Ordering\Ordering.API\Proto\ordering.proto" GrpcServices="Client" />
4337
</ItemGroup>
44-
45-
</Project>
46-
38+
</Project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)