├── .gitattributes ├── .gitignore ├── Controllers └── WeatherForecastController.cs ├── Program.cs ├── Properties └── launchSettings.json ├── ScalarExample.csproj ├── ScalarExample.http ├── ScalarExample.sln ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScalarExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/ScalarExample.csproj -------------------------------------------------------------------------------- /ScalarExample.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/ScalarExample.http -------------------------------------------------------------------------------- /ScalarExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/ScalarExample.sln -------------------------------------------------------------------------------- /WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/WeatherForecast.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juldhais/ScalarExample/HEAD/appsettings.json --------------------------------------------------------------------------------