├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── GitVersion.yml ├── README.md ├── SECURITY.md ├── logo.jpg └── src ├── .aspire └── settings.json ├── .editorconfig ├── Directory.Build.props ├── Directory.Packages.props ├── Dutchskull.Aspire.GinApp ├── Dockerfile ├── ginapp.go ├── go.mod └── go.sum ├── Dutchskull.Aspire.PolyRepo.ApiService ├── Dutchskull.Aspire.PolyRepo.ApiService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── Dutchskull.Aspire.PolyRepo.AppHost ├── Dutchskull.Aspire.PolyRepo.AppHost.csproj ├── NodeAppAddPortLifecycleHook.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── Dutchskull.Aspire.PolyRepo.Node ├── .npmrc ├── Dockerfile ├── Web.config ├── app.js ├── instrumentation.js ├── package-lock.json ├── package.json └── views │ └── index.pug ├── Dutchskull.Aspire.PolyRepo.React ├── .env ├── .gitignore ├── Dockerfile ├── README.md ├── Web.config ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── Dutchskull.Aspire.PolyRepo.ServiceDefaults ├── Dutchskull.Aspire.PolyRepo.ServiceDefaults.csproj └── Extensions.cs ├── Dutchskull.Aspire.PolyRepo.Tests.E2E ├── Dutchskull.Aspire.PolyRepo.Tests.E2E.csproj └── ServiceDiscoveryTests.cs ├── Dutchskull.Aspire.PolyRepo.Tests.Unit ├── Dutchskull.Aspire.PolyRepo.Tests.Unit.csproj ├── GitRepositoryConfigBuilderTests.cs ├── GitRepositoryConfigExtensionsTests.cs └── GitUrlUtilitiesTests.cs ├── Dutchskull.Aspire.PolyRepo.Web ├── Components │ ├── App.razor │ ├── Layout │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ └── NavMenu.razor.css │ ├── Pages │ │ ├── Counter.razor │ │ ├── Error.razor │ │ ├── Home.razor │ │ └── Weather.razor │ ├── Routes.razor │ └── _Imports.razor ├── Dutchskull.Aspire.PolyRepo.Web.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherApiClient.cs ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── app.css │ ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── favicon.png ├── Dutchskull.Aspire.PolyRepo.sln ├── Dutchskull.Aspire.PolyRepo ├── Dutchskull.Aspire.PolyRepo.csproj ├── FileSystem.cs ├── GitConfig.cs ├── GitConfigBuilder.cs ├── GitUrlUtilities.cs ├── Interfaces │ ├── IFileSystem.cs │ └── IProcessCommandExecutor.cs ├── NoRepositoryUrlException.cs ├── ProcessCommandExecutor.cs ├── ProjectResourceBuilderExtensions.cs ├── RepositoryConfig.cs ├── RepositoryConfigBuilder.cs ├── RepositoryConfigExtensions.cs ├── RepositoryResource.cs └── StringExtensions.cs └── NuGet.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/SECURITY.md -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/logo.jpg -------------------------------------------------------------------------------- /src/.aspire/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/.aspire/settings.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.GinApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.GinApp/Dockerfile -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.GinApp/ginapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.GinApp/ginapp.go -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.GinApp/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.GinApp/go.mod -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.GinApp/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.GinApp/go.sum -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/Dutchskull.Aspire.PolyRepo.ApiService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/Dutchskull.Aspire.PolyRepo.ApiService.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/Program.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/appsettings.Development.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ApiService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ApiService/appsettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/Dutchskull.Aspire.PolyRepo.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/Dutchskull.Aspire.PolyRepo.AppHost.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/NodeAppAddPortLifecycleHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/NodeAppAddPortLifecycleHook.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/Program.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.AppHost/appsettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/.npmrc: -------------------------------------------------------------------------------- 1 | # .npmrc 2 | engine-strict=true -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/Dockerfile -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/Web.config -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/app.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/instrumentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/instrumentation.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/package-lock.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/package.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Node/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Node/views/index.pug -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/.env -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/.gitignore -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/Dockerfile -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/README.md -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/Web.config -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/package-lock.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/package.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/favicon.ico -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/index.html -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/logo192.png -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/logo512.png -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/manifest.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/public/robots.txt -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/App.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/App.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/App.test.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/index.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/index.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/logo.svg -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.React/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.React/src/setupTests.js -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ServiceDefaults/Dutchskull.Aspire.PolyRepo.ServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ServiceDefaults/Dutchskull.Aspire.PolyRepo.ServiceDefaults.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.ServiceDefaults/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.ServiceDefaults/Extensions.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.E2E/Dutchskull.Aspire.PolyRepo.Tests.E2E.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.E2E/Dutchskull.Aspire.PolyRepo.Tests.E2E.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.E2E/ServiceDiscoveryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.E2E/ServiceDiscoveryTests.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.Unit/Dutchskull.Aspire.PolyRepo.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.Unit/Dutchskull.Aspire.PolyRepo.Tests.Unit.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitRepositoryConfigBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitRepositoryConfigBuilderTests.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitRepositoryConfigExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitRepositoryConfigExtensionsTests.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitUrlUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Tests.Unit/GitUrlUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/App.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Counter.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Error.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Home.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/Routes.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Components/_Imports.razor -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Dutchskull.Aspire.PolyRepo.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Dutchskull.Aspire.PolyRepo.Web.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Program.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/WeatherApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/WeatherApiClient.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/appsettings.Development.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/appsettings.json -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/app.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.Web/wwwroot/favicon.png -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo.sln -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/Dutchskull.Aspire.PolyRepo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/Dutchskull.Aspire.PolyRepo.csproj -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/FileSystem.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/GitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/GitConfig.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/GitConfigBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/GitConfigBuilder.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/GitUrlUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/GitUrlUtilities.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/Interfaces/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/Interfaces/IFileSystem.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/Interfaces/IProcessCommandExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/Interfaces/IProcessCommandExecutor.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/NoRepositoryUrlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/NoRepositoryUrlException.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/ProcessCommandExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/ProcessCommandExecutor.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/ProjectResourceBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/ProjectResourceBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/RepositoryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/RepositoryConfig.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/RepositoryConfigBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/RepositoryConfigBuilder.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/RepositoryConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/RepositoryConfigExtensions.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/RepositoryResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/RepositoryResource.cs -------------------------------------------------------------------------------- /src/Dutchskull.Aspire.PolyRepo/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/Dutchskull.Aspire.PolyRepo/StringExtensions.cs -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dutchskull/Aspire.PolyRepo/HEAD/src/NuGet.config --------------------------------------------------------------------------------