Skip to content

Commit 4c9457a

Browse files
authored
Merge pull request #227 from mck231/main
Modernizing the Angular sample
2 parents ae41e8d + 00bf67f commit 4c9457a

Some content is hidden

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

75 files changed

+8987
-8575
lines changed

BFF/v3/Angular/.vscode/launch.json

-41
This file was deleted.

BFF/v3/Angular/.vscode/tasks.json

-42
This file was deleted.

BFF/v3/Angular/Angular.Bff/Angular.Bff.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<InvariantGlobalization>true</InvariantGlobalization>
8-
<SpaRoot>..\angular.client</SpaRoot>
8+
<SpaRoot>..\angular.ssr</SpaRoot>
99
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
1010
<SpaProxyServerUrl>https://localhost:4200</SpaProxyServerUrl>
1111
<RootNamespace>Angular.Bff</RootNamespace>
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\angular.client\angular.client.esproj">
15+
<ProjectReference Include="..\angular.ssr\angular.ssr.esproj">
1616
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
1717
</ProjectReference>
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Duende.Bff.Yarp" Version="3.0.0" />
21+
<PackageReference Include="Duende.Bff.Yarp" Version="2.2.0" />
2222
<PackageReference Include="Microsoft.AspNetCore.SpaProxy">
2323
<Version>8.*-*</Version>
2424
</PackageReference>

BFF/v3/Angular/Angular.sln

+6-8
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ VisualStudioVersion = 17.9.34310.174
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Angular.Bff", "Angular.Bff\Angular.Bff.csproj", "{5E2E7B6B-24F1-4890-B802-0174F1E0E1C4}"
77
EndProject
8-
Project("{54A90642-561A-4BB1-A94E-469ADEE60C69}") = "angular.client", "angular.client\angular.client.esproj", "{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}"
9-
EndProject
108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Angular.Api", "Angular.Api\Angular.Api.csproj", "{D303F823-57D9-4C51-B551-EFCA94D10194}"
119
EndProject
10+
Project("{54A90642-561A-4BB1-A94E-469ADEE60C69}") = "angular.ssr", "angular.ssr\angular.ssr.esproj", "{35304CB0-32D6-4275-9333-D5FA0D4F1D0C}"
11+
EndProject
1212
Global
1313
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1414
Debug|Any CPU = Debug|Any CPU
@@ -19,16 +19,14 @@ Global
1919
{5E2E7B6B-24F1-4890-B802-0174F1E0E1C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
2020
{5E2E7B6B-24F1-4890-B802-0174F1E0E1C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
2121
{5E2E7B6B-24F1-4890-B802-0174F1E0E1C4}.Release|Any CPU.Build.0 = Release|Any CPU
22-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
24-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
25-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
26-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Release|Any CPU.Build.0 = Release|Any CPU
27-
{1FDF2D56-1F09-40E9-A3AE-EF1B4FE2F9CE}.Release|Any CPU.Deploy.0 = Release|Any CPU
2822
{D303F823-57D9-4C51-B551-EFCA94D10194}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2923
{D303F823-57D9-4C51-B551-EFCA94D10194}.Debug|Any CPU.Build.0 = Debug|Any CPU
3024
{D303F823-57D9-4C51-B551-EFCA94D10194}.Release|Any CPU.ActiveCfg = Release|Any CPU
3125
{D303F823-57D9-4C51-B551-EFCA94D10194}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{35304CB0-32D6-4275-9333-D5FA0D4F1D0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{35304CB0-32D6-4275-9333-D5FA0D4F1D0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{35304CB0-32D6-4275-9333-D5FA0D4F1D0C}.Release|Any CPU.ActiveCfg = Debug|Any CPU
29+
{35304CB0-32D6-4275-9333-D5FA0D4F1D0C}.Release|Any CPU.Build.0 = Debug|Any CPU
3230
EndGlobalSection
3331
GlobalSection(SolutionProperties) = preSolution
3432
HideSolutionNode = FALSE

BFF/v3/Angular/angular.client/.vscode/extensions.json

-4
This file was deleted.

BFF/v3/Angular/angular.client/.vscode/launch.json

-19
This file was deleted.

BFF/v3/Angular/angular.client/.vscode/tasks.json

-42
This file was deleted.

BFF/v3/Angular/angular.client/README.md

-27
This file was deleted.

BFF/v3/Angular/angular.client/karma.conf.js

-44
This file was deleted.

BFF/v3/Angular/angular.client/package.json

-45
This file was deleted.

BFF/v3/Angular/angular.client/src/app/app.component.css

-22
This file was deleted.

BFF/v3/Angular/angular.client/src/app/app.component.html

-6
This file was deleted.

BFF/v3/Angular/angular.client/src/app/app.component.ts

-9
This file was deleted.

0 commit comments

Comments
 (0)