├── .gitattributes ├── .gitignore ├── Controllers ├── ApiController.cs └── DiagnosticsController.cs ├── Dockerfile.net50 ├── GlobalGC.cs ├── MemoryLeak.csproj ├── MemoryLeak.sln ├── Pages └── Index.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/ApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Controllers/ApiController.cs -------------------------------------------------------------------------------- /Controllers/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Controllers/DiagnosticsController.cs -------------------------------------------------------------------------------- /Dockerfile.net50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Dockerfile.net50 -------------------------------------------------------------------------------- /GlobalGC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/GlobalGC.cs -------------------------------------------------------------------------------- /MemoryLeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/MemoryLeak.csproj -------------------------------------------------------------------------------- /MemoryLeak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/MemoryLeak.sln -------------------------------------------------------------------------------- /Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Pages/Index.cshtml -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MemoryLeak -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/MemoryLeakTrainingMaterial/HEAD/appsettings.json --------------------------------------------------------------------------------