├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── ApiUrlsGenerator.sln ├── LICENSE.md ├── README.md ├── _restore.cmd ├── _update-dependencies.cmd ├── global.json ├── src └── ApiUrlsGenerator │ ├── .editorconfig │ ├── ActionModel.cs │ ├── ApiControllerEqualityComparer.cs │ ├── ApiRoutesFinderService.cs │ ├── ApiUrlsGenerator.csproj │ ├── ApiUrlsGeneratorOptions.cs │ ├── ApiUrlsGeneratorRunner.cs │ ├── ApiUrlsGeneratorService.cs │ ├── ApiUrlsGeneratorServiceCollectionExtensions.cs │ ├── AssemblyInfo.cs │ ├── ControllerModel.cs │ ├── IApiRoutesFinderService.cs │ ├── IApiUrlsGeneratorService.cs │ ├── _build.cmd │ └── _dotnet_pack.cmd ├── tag-it.cmd └── tests └── ApiUrlsGenerator.HostedBlazorWasm ├── Client ├── ApiUrlsGenerator.HostedBlazorWasm.Client.csproj ├── App.razor ├── Pages │ ├── Counter.razor │ ├── FetchData.razor │ ├── Index.razor │ └── Index.razor.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Shared │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ ├── NavMenu.razor.css │ └── SurveyPrompt.razor ├── _Imports.razor ├── _build.cmd └── wwwroot │ ├── css │ ├── app.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff │ ├── favicon.ico │ ├── icon-192.png │ └── index.html ├── Server ├── ApiUrlsGenerator.HostedBlazorWasm.Server.csproj ├── Areas │ └── Test │ │ └── Controllers │ │ └── WeatherForecastController.cs ├── Controllers │ └── WeatherForecastController.cs ├── Pages │ ├── Error.cshtml │ └── Error.cshtml.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── _build.cmd ├── _run.cmd ├── appsettings.Development.json └── appsettings.json └── Shared ├── ApiUrls.cs ├── ApiUrlsGenerator.HostedBlazorWasm.Shared.csproj ├── WeatherForecast.cs └── _build.cmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /ApiUrlsGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/ApiUrlsGenerator.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/README.md -------------------------------------------------------------------------------- /_restore.cmd: -------------------------------------------------------------------------------- 1 | dotnet restore 2 | pause -------------------------------------------------------------------------------- /_update-dependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/_update-dependencies.cmd -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/global.json -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/.editorconfig -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ActionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ActionModel.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiControllerEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiControllerEqualityComparer.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiRoutesFinderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiRoutesFinderService.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiUrlsGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiUrlsGenerator.csproj -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiUrlsGeneratorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiUrlsGeneratorOptions.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiUrlsGeneratorRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiUrlsGeneratorRunner.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiUrlsGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiUrlsGeneratorService.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ApiUrlsGeneratorServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ApiUrlsGeneratorServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [assembly: CLSCompliant(false)] 4 | -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/ControllerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/ControllerModel.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/IApiRoutesFinderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/IApiRoutesFinderService.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/IApiUrlsGeneratorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/src/ApiUrlsGenerator/IApiUrlsGeneratorService.cs -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/_build.cmd: -------------------------------------------------------------------------------- 1 | dotnet watch build -------------------------------------------------------------------------------- /src/ApiUrlsGenerator/_dotnet_pack.cmd: -------------------------------------------------------------------------------- 1 | dotnet pack -c release 2 | pause -------------------------------------------------------------------------------- /tag-it.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tag-it.cmd -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/ApiUrlsGenerator.HostedBlazorWasm.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/ApiUrlsGenerator.HostedBlazorWasm.Client.csproj -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/App.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Counter.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/FetchData.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Index.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Index.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Pages/Index.razor.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Program.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/MainLayout.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/NavMenu.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/_Imports.razor -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/_build.cmd: -------------------------------------------------------------------------------- 1 | dotnet watch build -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/app.css -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/favicon.ico -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/icon-192.png -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Client/wwwroot/index.html -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/ApiUrlsGenerator.HostedBlazorWasm.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/ApiUrlsGenerator.HostedBlazorWasm.Server.csproj -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Areas/Test/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Areas/Test/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Pages/Error.cshtml -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Program.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/_build.cmd: -------------------------------------------------------------------------------- 1 | dotnet watch build -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/_run.cmd: -------------------------------------------------------------------------------- 1 | dotnet watch run -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/appsettings.Development.json -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Server/appsettings.json -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/ApiUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/ApiUrls.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/ApiUrlsGenerator.HostedBlazorWasm.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/ApiUrlsGenerator.HostedBlazorWasm.Shared.csproj -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/ApiUrlsGenerator/HEAD/tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/WeatherForecast.cs -------------------------------------------------------------------------------- /tests/ApiUrlsGenerator.HostedBlazorWasm/Shared/_build.cmd: -------------------------------------------------------------------------------- 1 | dotnet watch build --------------------------------------------------------------------------------