Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

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

steps:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Source/bin/Debug/net9.0/ReviewGenerator.dll",
"args": [],
"cwd": "${workspaceFolder}/ReviewGenerator",
"cwd": "${workspaceFolder}/Source",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Review Generator
<strong>This project uses .NET 9 and Angular 15.</strong><br/>
<strong>This project uses .NET 9 and Angular 19.</strong><br/>
Utilizing a dataset generate fake video game reviews with a single endpoint. Ingests training data on startup.

## Building and running the application
Expand Down
2 changes: 1 addition & 1 deletion Source/ClientApp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Review Generator

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

## Development server

Expand Down
9 changes: 4 additions & 5 deletions Source/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "ReviewGenerator:build:production"
"buildTarget": "ReviewGenerator:build:production"
},
"development": {
"browserTarget": "ReviewGenerator:build:development",
"buildTarget": "ReviewGenerator:build:development",
"proxyConfig": "proxy.conf.js"
}
},
Expand All @@ -84,7 +84,7 @@
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ReviewGenerator:build"
"buildTarget": "ReviewGenerator:build"
}
},
"test": {
Expand Down Expand Up @@ -131,6 +131,5 @@
}
}
}
},
"defaultProject": "ReviewGenerator"
}
}
Loading
Loading