├── .gitignore ├── HelloMiddleware.csproj ├── MockMiddleware.cs ├── Program.cs ├── README.md ├── ToJson.cs ├── appsettings.Development.json ├── appsettings.json ├── article.md └── mock.json /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | article 4 | Properties 5 | .env -------------------------------------------------------------------------------- /HelloMiddleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/HelloMiddleware.csproj -------------------------------------------------------------------------------- /MockMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/MockMiddleware.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/README.md -------------------------------------------------------------------------------- /ToJson.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/appsettings.json -------------------------------------------------------------------------------- /article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/article.md -------------------------------------------------------------------------------- /mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softchris/mock-sharp/HEAD/mock.json --------------------------------------------------------------------------------