├── .gitattributes ├── .gitignore ├── Chapter04 ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── Chapter05 ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── Chapter06 ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── Chapter07 ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── Chapter08 ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── bootstrap │ │ └── js │ │ │ └── bootstrap.min.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ ├── GeneratedController.cs │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── View.cshtml │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json ├── Chapter09 ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── bootstrap │ │ └── js │ │ │ └── bootstrap.min.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ ├── visualstudiologo.png │ │ └── visualstudiologo_modified.png │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ ├── GeneratedController.cs │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── View.cshtml │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json ├── Chapter10 ├── .config │ └── dotnet-tools.json ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.js │ ├── aspnetcore-react.js │ ├── bootstrap │ │ └── js │ │ │ └── bootstrap.min.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ ├── GeneratedController.cs │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── View.cshtml │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ ├── ServiceDependencies │ │ └── SAPProject - Web Deploy │ │ │ └── profile.arm.json │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json ├── Chapter12 ├── .config │ └── dotnet-tools.json ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.es5.js │ ├── aspnetcore-https.es5.min.js │ ├── aspnetcore-https.js │ ├── aspnetcore-react.es5.js │ ├── aspnetcore-react.es5.min.js │ ├── aspnetcore-react.js │ ├── bootstrap │ │ └── js │ │ │ └── bootstrap.min.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ ├── GeneratedController.cs │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── View.cshtml │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ ├── ServiceDependencies │ │ └── SAPProject - Web Deploy │ │ │ └── profile.arm.json │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json ├── Chapter14 ├── .config │ └── dotnet-tools.json ├── .gitattributes ├── .gitignore ├── ClientApp │ ├── .env │ ├── .env.development │ ├── .gitignore │ ├── README.md │ ├── aspnetcore-https.es5.js │ ├── aspnetcore-https.es5.min.js │ ├── aspnetcore-https.js │ ├── aspnetcore-react.es5.js │ ├── aspnetcore-react.es5.min.js │ ├── aspnetcore-react.js │ ├── bootstrap │ │ └── js │ │ │ └── bootstrap.min.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Counter.js │ │ ├── FetchData.js │ │ ├── Home.js │ │ ├── Layout.js │ │ ├── NavMenu.css │ │ └── NavMenu.js │ │ ├── custom.css │ │ ├── index.js │ │ ├── reportWebVitals.js │ │ ├── service-worker.js │ │ ├── serviceWorkerRegistration.js │ │ └── setupProxy.js ├── Controllers │ ├── GeneratedController.cs │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── View.cshtml │ └── _ViewImports.cshtml ├── Program.cs ├── Properties │ ├── ServiceDependencies │ │ └── SAPProject - Web Deploy │ │ │ └── profile.arm.json │ └── launchSettings.json ├── SPAProject.csproj ├── SPAProject.sln ├── Views │ └── Shared │ │ └── _ValidationScriptsPartial.cshtml ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter04/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter04/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter04/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter04/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter04/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter04/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter04/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter04/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter04/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter04/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter04/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter04/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Program.cs -------------------------------------------------------------------------------- /Chapter04/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter04/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/SPAProject.sln -------------------------------------------------------------------------------- /Chapter04/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter04/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter04/appsettings.json -------------------------------------------------------------------------------- /Chapter05/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/.gitattributes -------------------------------------------------------------------------------- /Chapter05/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/.gitignore -------------------------------------------------------------------------------- /Chapter05/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter05/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter05/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter05/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter05/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter05/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter05/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter05/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter05/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter05/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter05/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter05/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter05/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Program.cs -------------------------------------------------------------------------------- /Chapter05/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter05/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter05/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/SPAProject.sln -------------------------------------------------------------------------------- /Chapter05/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter05/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter05/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter05/appsettings.json -------------------------------------------------------------------------------- /Chapter06/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/.gitattributes -------------------------------------------------------------------------------- /Chapter06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/.gitignore -------------------------------------------------------------------------------- /Chapter06/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter06/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter06/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter06/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter06/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter06/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter06/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter06/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter06/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter06/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter06/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter06/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter06/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter06/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Program.cs -------------------------------------------------------------------------------- /Chapter06/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter06/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter06/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/SPAProject.sln -------------------------------------------------------------------------------- /Chapter06/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter06/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter06/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter06/appsettings.json -------------------------------------------------------------------------------- /Chapter07/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter07/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter07/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter07/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter07/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter07/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter07/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter07/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter07/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter07/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter07/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter07/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter07/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter07/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter07/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Program.cs -------------------------------------------------------------------------------- /Chapter07/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter07/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter07/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/SPAProject.sln -------------------------------------------------------------------------------- /Chapter07/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter07/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter07/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter07/appsettings.json -------------------------------------------------------------------------------- /Chapter08/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/.gitattributes -------------------------------------------------------------------------------- /Chapter08/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/.gitignore -------------------------------------------------------------------------------- /Chapter08/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter08/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter08/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter08/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter08/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter08/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter08/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter08/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter08/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter08/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter08/Controllers/GeneratedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Controllers/GeneratedController.cs -------------------------------------------------------------------------------- /Chapter08/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter08/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter08/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter08/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Pages/View.cshtml -------------------------------------------------------------------------------- /Chapter08/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter08/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Program.cs -------------------------------------------------------------------------------- /Chapter08/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter08/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter08/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/SPAProject.sln -------------------------------------------------------------------------------- /Chapter08/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter08/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter08/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter08/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/appsettings.json -------------------------------------------------------------------------------- /Chapter08/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter08/libman.json -------------------------------------------------------------------------------- /Chapter09/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/.gitattributes -------------------------------------------------------------------------------- /Chapter09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/.gitignore -------------------------------------------------------------------------------- /Chapter09/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter09/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter09/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter09/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter09/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter09/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter09/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter09/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter09/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter09/ClientApp/public/visualstudiologo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/public/visualstudiologo.png -------------------------------------------------------------------------------- /Chapter09/ClientApp/public/visualstudiologo_modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/public/visualstudiologo_modified.png -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter09/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter09/Controllers/GeneratedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Controllers/GeneratedController.cs -------------------------------------------------------------------------------- /Chapter09/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter09/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter09/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter09/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Pages/View.cshtml -------------------------------------------------------------------------------- /Chapter09/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter09/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Program.cs -------------------------------------------------------------------------------- /Chapter09/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter09/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter09/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/SPAProject.sln -------------------------------------------------------------------------------- /Chapter09/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter09/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter09/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter09/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/appsettings.json -------------------------------------------------------------------------------- /Chapter09/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter09/libman.json -------------------------------------------------------------------------------- /Chapter10/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Chapter10/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/.gitattributes -------------------------------------------------------------------------------- /Chapter10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/.gitignore -------------------------------------------------------------------------------- /Chapter10/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter10/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter10/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter10/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter10/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter10/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter10/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter10/Controllers/GeneratedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Controllers/GeneratedController.cs -------------------------------------------------------------------------------- /Chapter10/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter10/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter10/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter10/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Pages/View.cshtml -------------------------------------------------------------------------------- /Chapter10/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Program.cs -------------------------------------------------------------------------------- /Chapter10/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Chapter10/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter10/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter10/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/SPAProject.sln -------------------------------------------------------------------------------- /Chapter10/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter10/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter10/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter10/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/appsettings.json -------------------------------------------------------------------------------- /Chapter10/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter10/libman.json -------------------------------------------------------------------------------- /Chapter12/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Chapter12/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/.gitattributes -------------------------------------------------------------------------------- /Chapter12/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/.gitignore -------------------------------------------------------------------------------- /Chapter12/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter12/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter12/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter12/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-https.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-https.es5.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-https.es5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-https.es5.min.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-react.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-react.es5.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-react.es5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-react.es5.min.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter12/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter12/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter12/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter12/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter12/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter12/Controllers/GeneratedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Controllers/GeneratedController.cs -------------------------------------------------------------------------------- /Chapter12/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter12/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter12/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter12/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Pages/View.cshtml -------------------------------------------------------------------------------- /Chapter12/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter12/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Program.cs -------------------------------------------------------------------------------- /Chapter12/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Chapter12/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter12/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter12/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/SPAProject.sln -------------------------------------------------------------------------------- /Chapter12/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter12/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter12/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter12/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/appsettings.json -------------------------------------------------------------------------------- /Chapter12/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter12/libman.json -------------------------------------------------------------------------------- /Chapter14/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Chapter14/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/.gitattributes -------------------------------------------------------------------------------- /Chapter14/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/.gitignore -------------------------------------------------------------------------------- /Chapter14/ClientApp/.env: -------------------------------------------------------------------------------- 1 | BROWSER=none 2 | -------------------------------------------------------------------------------- /Chapter14/ClientApp/.env.development: -------------------------------------------------------------------------------- 1 | PORT=44443 2 | HTTPS=true 3 | 4 | -------------------------------------------------------------------------------- /Chapter14/ClientApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/.gitignore -------------------------------------------------------------------------------- /Chapter14/ClientApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/README.md -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-https.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-https.es5.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-https.es5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-https.es5.min.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-https.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-react.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-react.es5.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-react.es5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-react.es5.min.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/aspnetcore-react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/aspnetcore-react.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/package-lock.json -------------------------------------------------------------------------------- /Chapter14/ClientApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/package.json -------------------------------------------------------------------------------- /Chapter14/ClientApp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/public/favicon.ico -------------------------------------------------------------------------------- /Chapter14/ClientApp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/public/index.html -------------------------------------------------------------------------------- /Chapter14/ClientApp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/public/manifest.json -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/App.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/App.test.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/Counter.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/FetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/FetchData.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/Home.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/Layout.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/NavMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/NavMenu.css -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/components/NavMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/components/NavMenu.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/custom.css -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/index.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/service-worker.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /Chapter14/ClientApp/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/ClientApp/src/setupProxy.js -------------------------------------------------------------------------------- /Chapter14/Controllers/GeneratedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Controllers/GeneratedController.cs -------------------------------------------------------------------------------- /Chapter14/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Chapter14/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Pages/Error.cshtml -------------------------------------------------------------------------------- /Chapter14/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Chapter14/Pages/View.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Pages/View.cshtml -------------------------------------------------------------------------------- /Chapter14/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter14/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Program.cs -------------------------------------------------------------------------------- /Chapter14/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Properties/ServiceDependencies/SAPProject - Web Deploy/profile.arm.json -------------------------------------------------------------------------------- /Chapter14/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter14/SPAProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/SPAProject.csproj -------------------------------------------------------------------------------- /Chapter14/SPAProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/SPAProject.sln -------------------------------------------------------------------------------- /Chapter14/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter14/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/WeatherForecast.cs -------------------------------------------------------------------------------- /Chapter14/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter14/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/appsettings.json -------------------------------------------------------------------------------- /Chapter14/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/Chapter14/libman.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Visual-Studio-2022/HEAD/README.md --------------------------------------------------------------------------------