├── .github └── renovate.json ├── .gitignore ├── .kokoro-windows ├── Import-Secrets.ps1 ├── casper-bootstrap.js ├── common.cfg ├── main.ps1 ├── presubmit.cfg ├── system_tests.cfg ├── trampoline.bat └── trampoline.ps1 ├── BackgroundProcessing ├── BackgroundProcessing.sln ├── Enable-Apis.ps1 ├── PublishTo-CloudRun.ps1 ├── TranslateUI │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── HomeViewModel.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── TestResults.xml │ ├── TranslateUI.csproj │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── runTests.ps1 │ ├── test.js │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ └── js │ │ └── site.js ├── TranslateWorker │ ├── Controllers │ │ └── TranslateController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Startup.cs │ ├── TranslateWorker.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── runTests.ps1 │ └── test.js └── Translation │ ├── Translation.cs │ └── Translation.csproj ├── Bookshelf ├── Bookshelf.csproj ├── Controllers │ ├── BooksController.cs │ └── HomeController.cs ├── Dockerfile ├── Enable-Apis.ps1 ├── Models │ ├── Book.cs │ ├── BookList.cs │ ├── BookStoreBackend.cs │ ├── BookStoreDbContext.cs │ ├── DbBookStore.cs │ ├── FirestoreBookStore.cs │ └── IBookStore.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── PublishTo-CloudRun.ps1 ├── README.md ├── Services │ └── ImageUploader.cs ├── Startup.cs ├── ViewModels │ ├── Books │ │ ├── Form.cs │ │ └── Index.cs │ └── ErrorViewModel.cs ├── Views │ ├── Books │ │ ├── Details.cshtml │ │ ├── Form.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── runTestsWithFirestore.ps1 ├── runTestsWithSqlInMemory.ps1 ├── test.js └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ └── js │ └── site.js ├── BuildAndRunTests.ps1 ├── BuildTools.psm1 ├── CODEOWNERS ├── CONTRIBUTING.md ├── HelloWorld ├── Dockerfile ├── HelloWorld.csproj ├── HelloWorld.sln ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ └── ComputeEngine.pubxml │ └── launchSettings.json ├── PublishTo-CloudRun.ps1 ├── PublishTo-ComputeEngine.ps1 ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── runTests.ps1 └── test.js ├── LICENSE ├── README.md ├── Sessions ├── Clean-Up.ps1 ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── PublishTo-CloudRun.ps1 ├── Sessions.csproj ├── Set-Up.ps1 ├── SetUp.psm1 ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── runTests.ps1 └── test.js ├── TESTING.md ├── cat-image.jpg └── favicon.ico /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro-windows/Import-Secrets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/Import-Secrets.ps1 -------------------------------------------------------------------------------- /.kokoro-windows/casper-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/casper-bootstrap.js -------------------------------------------------------------------------------- /.kokoro-windows/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/common.cfg -------------------------------------------------------------------------------- /.kokoro-windows/main.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/main.ps1 -------------------------------------------------------------------------------- /.kokoro-windows/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro-windows/system_tests.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/system_tests.cfg -------------------------------------------------------------------------------- /.kokoro-windows/trampoline.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/trampoline.bat -------------------------------------------------------------------------------- /.kokoro-windows/trampoline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/.kokoro-windows/trampoline.ps1 -------------------------------------------------------------------------------- /BackgroundProcessing/BackgroundProcessing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/BackgroundProcessing.sln -------------------------------------------------------------------------------- /BackgroundProcessing/Enable-Apis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/Enable-Apis.ps1 -------------------------------------------------------------------------------- /BackgroundProcessing/PublishTo-CloudRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/PublishTo-CloudRun.ps1 -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Dockerfile -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Models/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Models/HomeViewModel.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Program.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Startup.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/TestResults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/TestResults.xml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/TranslateUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/TranslateUI.csproj -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/appsettings.Development.json -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/appsettings.json -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/runTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/runTests.ps1 -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/test.js -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/wwwroot/css/site.css -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateUI/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateUI/wwwroot/js/site.js -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/Controllers/TranslateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/Controllers/TranslateController.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/Dockerfile -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/Program.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/Startup.cs -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/TranslateWorker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/TranslateWorker.csproj -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/appsettings.Development.json -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/appsettings.json -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/runTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/runTests.ps1 -------------------------------------------------------------------------------- /BackgroundProcessing/TranslateWorker/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/TranslateWorker/test.js -------------------------------------------------------------------------------- /BackgroundProcessing/Translation/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/Translation/Translation.cs -------------------------------------------------------------------------------- /BackgroundProcessing/Translation/Translation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BackgroundProcessing/Translation/Translation.csproj -------------------------------------------------------------------------------- /Bookshelf/Bookshelf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Bookshelf.csproj -------------------------------------------------------------------------------- /Bookshelf/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Bookshelf/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Bookshelf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Dockerfile -------------------------------------------------------------------------------- /Bookshelf/Enable-Apis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Enable-Apis.ps1 -------------------------------------------------------------------------------- /Bookshelf/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/Book.cs -------------------------------------------------------------------------------- /Bookshelf/Models/BookList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/BookList.cs -------------------------------------------------------------------------------- /Bookshelf/Models/BookStoreBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/BookStoreBackend.cs -------------------------------------------------------------------------------- /Bookshelf/Models/BookStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/BookStoreDbContext.cs -------------------------------------------------------------------------------- /Bookshelf/Models/DbBookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/DbBookStore.cs -------------------------------------------------------------------------------- /Bookshelf/Models/FirestoreBookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/FirestoreBookStore.cs -------------------------------------------------------------------------------- /Bookshelf/Models/IBookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Models/IBookStore.cs -------------------------------------------------------------------------------- /Bookshelf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Program.cs -------------------------------------------------------------------------------- /Bookshelf/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Properties/launchSettings.json -------------------------------------------------------------------------------- /Bookshelf/PublishTo-CloudRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/PublishTo-CloudRun.ps1 -------------------------------------------------------------------------------- /Bookshelf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/README.md -------------------------------------------------------------------------------- /Bookshelf/Services/ImageUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Services/ImageUploader.cs -------------------------------------------------------------------------------- /Bookshelf/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Startup.cs -------------------------------------------------------------------------------- /Bookshelf/ViewModels/Books/Form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/ViewModels/Books/Form.cs -------------------------------------------------------------------------------- /Bookshelf/ViewModels/Books/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/ViewModels/Books/Index.cs -------------------------------------------------------------------------------- /Bookshelf/ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /Bookshelf/Views/Books/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Books/Details.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Books/Form.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Books/Form.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Books/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Books/Index.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Bookshelf/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Bookshelf/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/appsettings.Development.json -------------------------------------------------------------------------------- /Bookshelf/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/appsettings.json -------------------------------------------------------------------------------- /Bookshelf/runTestsWithFirestore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/runTestsWithFirestore.ps1 -------------------------------------------------------------------------------- /Bookshelf/runTestsWithSqlInMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/runTestsWithSqlInMemory.ps1 -------------------------------------------------------------------------------- /Bookshelf/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/test.js -------------------------------------------------------------------------------- /Bookshelf/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/wwwroot/css/site.css -------------------------------------------------------------------------------- /Bookshelf/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Bookshelf/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Bookshelf/wwwroot/js/site.js -------------------------------------------------------------------------------- /BuildAndRunTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BuildAndRunTests.ps1 -------------------------------------------------------------------------------- /BuildTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/BuildTools.psm1 -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HelloWorld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/Dockerfile -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /HelloWorld/HelloWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/HelloWorld.sln -------------------------------------------------------------------------------- /HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/Program.cs -------------------------------------------------------------------------------- /HelloWorld/Properties/PublishProfiles/ComputeEngine.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/Properties/PublishProfiles/ComputeEngine.pubxml -------------------------------------------------------------------------------- /HelloWorld/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/Properties/launchSettings.json -------------------------------------------------------------------------------- /HelloWorld/PublishTo-CloudRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/PublishTo-CloudRun.ps1 -------------------------------------------------------------------------------- /HelloWorld/PublishTo-ComputeEngine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/PublishTo-ComputeEngine.ps1 -------------------------------------------------------------------------------- /HelloWorld/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/Startup.cs -------------------------------------------------------------------------------- /HelloWorld/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/appsettings.Development.json -------------------------------------------------------------------------------- /HelloWorld/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/appsettings.json -------------------------------------------------------------------------------- /HelloWorld/runTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/runTests.ps1 -------------------------------------------------------------------------------- /HelloWorld/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/HelloWorld/test.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /Sessions/Clean-Up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Clean-Up.ps1 -------------------------------------------------------------------------------- /Sessions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Dockerfile -------------------------------------------------------------------------------- /Sessions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Program.cs -------------------------------------------------------------------------------- /Sessions/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sessions/PublishTo-CloudRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/PublishTo-CloudRun.ps1 -------------------------------------------------------------------------------- /Sessions/Sessions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Sessions.csproj -------------------------------------------------------------------------------- /Sessions/Set-Up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Set-Up.ps1 -------------------------------------------------------------------------------- /Sessions/SetUp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/SetUp.psm1 -------------------------------------------------------------------------------- /Sessions/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/Startup.cs -------------------------------------------------------------------------------- /Sessions/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/appsettings.Development.json -------------------------------------------------------------------------------- /Sessions/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/appsettings.json -------------------------------------------------------------------------------- /Sessions/runTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/runTests.ps1 -------------------------------------------------------------------------------- /Sessions/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/Sessions/test.js -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/TESTING.md -------------------------------------------------------------------------------- /cat-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/cat-image.jpg -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/getting-started-dotnet/HEAD/favicon.ico --------------------------------------------------------------------------------