Visual Studio Code can't see .NET SDK
Visual Studio Code is reporting an error detecting the .NET SDK, which is installed and on the system path. VSC's path is missing items from the system path as well.


ng serve, but if I just refresh the page, it doesn't work.export class CarsTableComponent {
carsService: CarsService = inject(CarsService);
carsList: Car[] = [];
make: string = "";
constructor() {
this.carsService.getCarsList(this.make).then((carsList: Car[]) => {
this.carsList = carsList;
});
}
} const firstCar = this.carsList[0];
this.carsList.push(firstCar);
console.log(this.carsList);echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" | sudo tee /etc/yum.repos.d/vscode.repo > /dev/null
rpm-ostree install codenvm install --ltsnpm i -g @angular/cli