Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit 4611796

Browse files
authored
Angular 19 update (#2)
- Angular upgrade. - Update properties to go along with Angular upgrade. - Resolve CS warnings. - Update launch settings and profiles.
1 parent 7b95aef commit 4611796

File tree

20 files changed

+10848
-17676
lines changed

20 files changed

+10848
-17676
lines changed

.github/workflows/node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [14.x, 16.x, 18.x]
19+
node-version: [20.x, 22.x, 23.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// If you have changed target frameworks, make sure to update the program path.
1313
"program": "${workspaceFolder}/Source/bin/Debug/net9.0/ReviewGenerator.dll",
1414
"args": [],
15-
"cwd": "${workspaceFolder}/ReviewGenerator",
15+
"cwd": "${workspaceFolder}/Source",
1616
"stopAtEntry": false,
1717
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
1818
"serverReadyAction": {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Review Generator
2-
<strong>This project uses .NET 9 and Angular 15.</strong><br/>
2+
<strong>This project uses .NET 9 and Angular 19.</strong><br/>
33
Utilizing a dataset generate fake video game reviews with a single endpoint. Ingests training data on startup.
44

55
## Building and running the application

Source/ClientApp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Review Generator
22

3-
This project uses [Angular CLI](https://github.com/angular/angular-cli) version 15.
3+
This project uses [Angular CLI](https://github.com/angular/angular-cli) version 19.
44

55
## Development server
66

Source/ClientApp/angular.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@
7272
"builder": "@angular-devkit/build-angular:dev-server",
7373
"configurations": {
7474
"production": {
75-
"browserTarget": "ReviewGenerator:build:production"
75+
"buildTarget": "ReviewGenerator:build:production"
7676
},
7777
"development": {
78-
"browserTarget": "ReviewGenerator:build:development",
78+
"buildTarget": "ReviewGenerator:build:development",
7979
"proxyConfig": "proxy.conf.js"
8080
}
8181
},
@@ -84,7 +84,7 @@
8484
"extract-i18n": {
8585
"builder": "@angular-devkit/build-angular:extract-i18n",
8686
"options": {
87-
"browserTarget": "ReviewGenerator:build"
87+
"buildTarget": "ReviewGenerator:build"
8888
}
8989
},
9090
"test": {
@@ -131,6 +131,5 @@
131131
}
132132
}
133133
}
134-
},
135-
"defaultProject": "ReviewGenerator"
134+
}
136135
}

0 commit comments

Comments
 (0)