├── README.md ├── assets └── event-agenda.png ├── demolar ├── Running-a-Static-Web-Site-and-APIs-for-the-Cheap │ ├── .gitignore │ ├── CustomRedirectResult.cs │ ├── MailSend.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── mailingfunc - Zip Deploy.pubxml │ │ ├── ServiceDependencies │ │ │ └── mailingfunc - Zip Deploy │ │ │ │ ├── appInsights1.arm.json │ │ │ │ ├── profile.arm.json │ │ │ │ └── storage1.arm.json │ │ ├── serviceDependencies.json │ │ ├── serviceDependencies.local.json │ │ └── serviceDependencies.mailingfunc - Zip Deploy.json │ ├── SPA.csproj │ ├── SPA.sln │ └── host.json └── Whats New in CS9 │ ├── 02-InitOnlyProperties │ ├── 02-InitOnlyProperties.csproj │ ├── Program.cs │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── 02-InitOnlyProperties.AssemblyInfo.cs │ │ ├── 02-InitOnlyProperties.AssemblyInfoInputs.cache │ │ ├── 02-InitOnlyProperties.GeneratedMSBuildEditorConfig.editorconfig │ │ └── 02-InitOnlyProperties.csprojAssemblyReference.cache │ ├── 03-Records │ ├── 03-Records.csproj │ └── Program.cs │ ├── 04-PatternMatchingNews │ ├── 04-PatternMatchingNews.csproj │ ├── Program.cs │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── 04-PatternMatchingNews.AssemblyInfo.cs │ │ ├── 04-PatternMatchingNews.AssemblyInfoInputs.cache │ │ └── 04-PatternMatchingNews.GeneratedMSBuildEditorConfig.editorconfig │ ├── 05-StaticAnonymousFunctions │ ├── 05-StaticAnonymousFunctions.csproj │ ├── Program.cs │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── 05-StaticAnonymousFunctions.AssemblyInfo.cs │ │ ├── 05-StaticAnonymousFunctions.AssemblyInfoInputs.cache │ │ └── 05-StaticAnonymousFunctions.GeneratedMSBuildEditorConfig.editorconfig │ ├── 06-NativeSizedIntegers │ ├── 06-NativeSizedIntegers.csproj │ ├── Program.cs │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── 06-NativeSizedIntegers.AssemblyInfo.cs │ │ ├── 06-NativeSizedIntegers.AssemblyInfoInputs.cache │ │ └── 06-NativeSizedIntegers.GeneratedMSBuildEditorConfig.editorconfig │ ├── 07-CovariantReturnTypes │ ├── 07-CovariantReturnTypes.csproj │ └── Program.cs │ ├── 08-ModuleInitializers │ ├── 07-ModuleInitializers.csproj │ ├── Program.cs │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── 07-ModuleInitializers.AssemblyInfo.cs │ │ ├── 07-ModuleInitializers.AssemblyInfoInputs.cache │ │ └── 07-ModuleInitializers.GeneratedMSBuildEditorConfig.editorconfig │ ├── Teknolot.sln │ └── Teknolot │ ├── 01-TopLevelPrograms.csproj │ └── Program.cs └── sunumlar ├── Azure loves containers.pdf ├── High-performance Services with gRPC in NET 5.pptx ├── NET Core uzerinde yuksek performansli uygulama gelistirme.pdf ├── Running-a-Static-Web-Site-and-APIs-for-the-Cheap.pdf ├── Whats New in CS9.pptx └── Xamarin_Forms-5-ile-Az-Kod-Cok-Is.pptx /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/README.md -------------------------------------------------------------------------------- /assets/event-agenda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/assets/event-agenda.png -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/.gitignore -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/CustomRedirectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/CustomRedirectResult.cs -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/MailSend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/MailSend.cs -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/PublishProfiles/mailingfunc - Zip Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/PublishProfiles/mailingfunc - Zip Deploy.pubxml -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/appInsights1.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/appInsights1.arm.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/profile.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/profile.arm.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/storage1.arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/ServiceDependencies/mailingfunc - Zip Deploy/storage1.arm.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.mailingfunc - Zip Deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/Properties/serviceDependencies.mailingfunc - Zip Deploy.json -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/SPA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/SPA.csproj -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/SPA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/SPA.sln -------------------------------------------------------------------------------- /demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap/host.json -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/02-InitOnlyProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/02-InitOnlyProperties.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.AssemblyInfo.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8dc60ea3164147640bc0b905ab1bdea72d04eb24 2 | -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/02-InitOnlyProperties/obj/Debug/net5.0/02-InitOnlyProperties.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /demolar/Whats New in CS9/03-Records/03-Records.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/03-Records/03-Records.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/03-Records/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/03-Records/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/04-PatternMatchingNews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/04-PatternMatchingNews/04-PatternMatchingNews.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/04-PatternMatchingNews/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/04-PatternMatchingNews.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/04-PatternMatchingNews.AssemblyInfo.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/04-PatternMatchingNews.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 79be323b7dc9f96c050b40c89747da63bc2b71eb 2 | -------------------------------------------------------------------------------- /demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/04-PatternMatchingNews.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/04-PatternMatchingNews/obj/Debug/net5.0/04-PatternMatchingNews.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/05-StaticAnonymousFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/05-StaticAnonymousFunctions/05-StaticAnonymousFunctions.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/05-StaticAnonymousFunctions/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/05-StaticAnonymousFunctions.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/05-StaticAnonymousFunctions.AssemblyInfo.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/05-StaticAnonymousFunctions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ae974d7d3e7fc41164dbc2b4a9cdcf3c15943084 2 | -------------------------------------------------------------------------------- /demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/05-StaticAnonymousFunctions.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/05-StaticAnonymousFunctions/obj/Debug/net5.0/05-StaticAnonymousFunctions.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/06-NativeSizedIntegers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/06-NativeSizedIntegers/06-NativeSizedIntegers.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/06-NativeSizedIntegers/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/06-NativeSizedIntegers.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/06-NativeSizedIntegers.AssemblyInfo.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/06-NativeSizedIntegers.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dd9467d5757d0bf6b59c4d93dd36d20c3ea0ac73 2 | -------------------------------------------------------------------------------- /demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/06-NativeSizedIntegers.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/06-NativeSizedIntegers/obj/Debug/net5.0/06-NativeSizedIntegers.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /demolar/Whats New in CS9/07-CovariantReturnTypes/07-CovariantReturnTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/07-CovariantReturnTypes/07-CovariantReturnTypes.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/07-CovariantReturnTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/07-CovariantReturnTypes/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/07-ModuleInitializers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/08-ModuleInitializers/07-ModuleInitializers.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/08-ModuleInitializers/Program.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/07-ModuleInitializers.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/07-ModuleInitializers.AssemblyInfo.cs -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/07-ModuleInitializers.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a58c80ae44fc65863a1f0f97cc940817b6a001ca 2 | -------------------------------------------------------------------------------- /demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/07-ModuleInitializers.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/08-ModuleInitializers/obj/Debug/net5.0/07-ModuleInitializers.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /demolar/Whats New in CS9/Teknolot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/Teknolot.sln -------------------------------------------------------------------------------- /demolar/Whats New in CS9/Teknolot/01-TopLevelPrograms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/Teknolot/01-TopLevelPrograms.csproj -------------------------------------------------------------------------------- /demolar/Whats New in CS9/Teknolot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/demolar/Whats New in CS9/Teknolot/Program.cs -------------------------------------------------------------------------------- /sunumlar/Azure loves containers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/Azure loves containers.pdf -------------------------------------------------------------------------------- /sunumlar/High-performance Services with gRPC in NET 5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/High-performance Services with gRPC in NET 5.pptx -------------------------------------------------------------------------------- /sunumlar/NET Core uzerinde yuksek performansli uygulama gelistirme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/NET Core uzerinde yuksek performansli uygulama gelistirme.pdf -------------------------------------------------------------------------------- /sunumlar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/Running-a-Static-Web-Site-and-APIs-for-the-Cheap.pdf -------------------------------------------------------------------------------- /sunumlar/Whats New in CS9.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/Whats New in CS9.pptx -------------------------------------------------------------------------------- /sunumlar/Xamarin_Forms-5-ile-Az-Kod-Cok-Is.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teknolot/dotnetconf-2020-demo/HEAD/sunumlar/Xamarin_Forms-5-ile-Az-Kod-Cok-Is.pptx --------------------------------------------------------------------------------