├── .DS_Store ├── .dockerignore ├── .gitattributes ├── .gitignore ├── 01_CancellationSample ├── 01_CancellationSample_After │ ├── 01_CancellationSample_After.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── DataAccess │ │ └── CryptoCurrencyDataSource.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainPageViewModel.cs │ ├── Model │ │ ├── HistoricalValue.cs │ │ └── TimeFrame.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── SyncfusionAssemblyRefs │ │ ├── Syncfusion.SfChart.UWP.dll │ │ ├── Syncfusion.SfChart.UWP.pri │ │ ├── Syncfusion.SfChart.UWP.xml │ │ └── Syncfusion.SfChart.UWP │ │ │ ├── 3D │ │ │ ├── ChartArea │ │ │ │ └── Themes │ │ │ │ │ ├── SfChart3D.xaml │ │ │ │ │ └── SfChart3D.xbf │ │ │ └── ChartSeries │ │ │ │ └── Themes │ │ │ │ ├── ChartSeries.xaml │ │ │ │ └── ChartSeries.xbf │ │ │ ├── ChartArea │ │ │ └── Themes │ │ │ │ ├── ChartArea.xaml │ │ │ │ └── ChartArea.xbf │ │ │ ├── ChartAxis │ │ │ └── Themes │ │ │ │ ├── ChartAxis.xaml │ │ │ │ └── ChartAxis.xbf │ │ │ ├── ChartSeries │ │ │ └── Themes │ │ │ │ ├── ChartSeries.xaml │ │ │ │ └── ChartSeries.xbf │ │ │ ├── Controls │ │ │ └── Themes │ │ │ │ ├── ChartToolBar.xaml │ │ │ │ ├── ChartToolBar.xbf │ │ │ │ ├── ResizableScrollBar.xaml │ │ │ │ ├── ResizableScrollBar.xbf │ │ │ │ ├── Resizer.xaml │ │ │ │ ├── Resizer.xbf │ │ │ │ ├── SfRangeNavigator.xaml │ │ │ │ └── SfRangeNavigator.xbf │ │ │ ├── Properties │ │ │ └── Syncfusion.SfChart.UWP_2015.rd.xml │ │ │ ├── Sparkline │ │ │ └── Themes │ │ │ │ ├── Sparkline.xaml │ │ │ │ └── Sparkline.xbf │ │ │ ├── Syncfusion.SfChart.UWP.xml │ │ │ ├── Syncfusion.SfChart.UWP.xr.xml │ │ │ └── Themes │ │ │ ├── Generic.Common.xaml │ │ │ ├── Generic.Common.xbf │ │ │ ├── Generic.Legend.xaml │ │ │ ├── Generic.Legend.xbf │ │ │ ├── Generic.Symbol.xaml │ │ │ ├── Generic.Symbol.xbf │ │ │ ├── generic.xaml │ │ │ └── generic.xbf │ └── project.json └── 01_CancellationSample_Before │ ├── 01_CancellationSample_Before.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── DataAccess │ └── CryptoCurrencyDataSource.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainPageViewModel.cs │ ├── Model │ ├── HistoricalValue.cs │ └── TimeFrame.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── SyncfusionAssemblyRefs │ ├── Syncfusion.SfChart.UWP.dll │ ├── Syncfusion.SfChart.UWP.pri │ ├── Syncfusion.SfChart.UWP.xml │ └── Syncfusion.SfChart.UWP │ │ ├── 3D │ │ ├── ChartArea │ │ │ └── Themes │ │ │ │ ├── SfChart3D.xaml │ │ │ │ └── SfChart3D.xbf │ │ └── ChartSeries │ │ │ └── Themes │ │ │ ├── ChartSeries.xaml │ │ │ └── ChartSeries.xbf │ │ ├── ChartArea │ │ └── Themes │ │ │ ├── ChartArea.xaml │ │ │ └── ChartArea.xbf │ │ ├── ChartAxis │ │ └── Themes │ │ │ ├── ChartAxis.xaml │ │ │ └── ChartAxis.xbf │ │ ├── ChartSeries │ │ └── Themes │ │ │ ├── ChartSeries.xaml │ │ │ └── ChartSeries.xbf │ │ ├── Controls │ │ └── Themes │ │ │ ├── ChartToolBar.xaml │ │ │ ├── ChartToolBar.xbf │ │ │ ├── ResizableScrollBar.xaml │ │ │ ├── ResizableScrollBar.xbf │ │ │ ├── Resizer.xaml │ │ │ ├── Resizer.xbf │ │ │ ├── SfRangeNavigator.xaml │ │ │ └── SfRangeNavigator.xbf │ │ ├── Properties │ │ └── Syncfusion.SfChart.UWP_2015.rd.xml │ │ ├── Sparkline │ │ └── Themes │ │ │ ├── Sparkline.xaml │ │ │ └── Sparkline.xbf │ │ ├── Syncfusion.SfChart.UWP.xml │ │ ├── Syncfusion.SfChart.UWP.xr.xml │ │ └── Themes │ │ ├── Generic.Common.xaml │ │ ├── Generic.Common.xbf │ │ ├── Generic.Legend.xaml │ │ ├── Generic.Legend.xbf │ │ ├── Generic.Symbol.xaml │ │ ├── Generic.Symbol.xbf │ │ ├── generic.xaml │ │ └── generic.xbf │ └── project.json ├── 02_WebSocket_DotNetStandard ├── 02_BitcoinTracker.Uwp │ ├── 02_BitcoinTracker.Uwp.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── 02_BitcoinTracker.iOS │ ├── 02_BitcoinTracker.iOS.csproj │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── ViewController.cs │ └── ViewController.designer.cs └── 02_CryptoDataSourceLib │ ├── 02_CryptoDataSourceLib.csproj │ ├── CryptoCurrencyUpdate.cs │ └── CryptoDataSource.cs ├── 03_CSharp8NullableReferenceTypes └── Cs8NullableReferenceTypes │ ├── App.config │ ├── Cs8NullableReferenceTypes.csproj │ ├── Program.cs │ └── Properties │ └── AssemblyInfo.cs ├── 04_CSharp_CovarianceAndContravariance └── CovarianceAndContravarianceSample │ ├── CovarianceAndContravarianceSample.csproj │ └── Program.cs ├── 05_BenchmarkDotNet ├── BenchmarkingLib │ ├── BenchmarkDotNet.Artifacts │ │ └── results │ │ │ ├── BenchmarkingLib.Program-disassembly-report.html │ │ │ ├── BenchmarkingLib.Program-report-github.md │ │ │ ├── BenchmarkingLib.Program-report.csv │ │ │ ├── BenchmarkingLib.Program-report.html │ │ │ ├── Program_CalculateWithLinq_DefaultJob-asm.pretty.html │ │ │ ├── Program_CalculateWithLinq_DefaultJob-asm.raw.html │ │ │ ├── Program_CalculateWithNonLinq_DefaultJob-asm.pretty.html │ │ │ └── Program_CalculateWithNonLinq_DefaultJob-asm.raw.html │ ├── BenchmarkingLib.csproj │ ├── MSFT.csv │ └── Program.cs └── LibToBenchMark │ ├── HistoricalPriceReader.cs │ ├── HistoricalValue.cs │ ├── LibToBenchmark.csproj │ ├── Quote.cs │ └── SimpleMovingAverage.cs ├── 06_AspNetCore_SocialLogin └── AspNetCore_SocialLogin │ ├── AspNetCore_SocialLogin.csproj │ ├── Controllers │ ├── AuthController.cs │ └── HomeController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Auth │ │ └── Login.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 07_Fsharp ├── CsharpAppUsingFsharpLib │ ├── CsharpAppUsingFsharpLib.csproj │ ├── MSFT.csv │ └── Program.cs └── StockAnalyticsLib │ ├── Library.fs │ ├── MSFT.csv │ ├── Script1.fsx │ └── StockAnalyticsLib.fsproj ├── 08_SignalRCore ├── SignalRClient │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── SignalRClient.csproj │ ├── ViewController.cs │ ├── ViewController.designer.cs │ └── packages.config └── SignalRDemo │ ├── Chat.cs │ ├── Controllers │ └── HomeController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SignalRDemo.csproj │ ├── Startup.cs │ ├── Views │ └── Home │ │ └── Index.cshtml │ ├── package-lock.json │ └── wwwroot │ └── signalr-client-1.0.0-alpha2-final.js ├── 09_Blazor └── readme.txt ├── 10_AspNetCoreDocker └── DockerSample │ ├── DockerSample.csproj │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ └── Startup.cs ├── 11_Vectorization_Simd └── Simd_Sample1 │ ├── BenchmarkDotNet.Artifacts │ └── results │ │ ├── Program-disassembly-report.html │ │ ├── Program-report-github.md │ │ ├── Program-report.csv │ │ ├── Program-report.html │ │ ├── Program_AddArrays_Simple_Benchmark_DefaultJob-asm.pretty.html │ │ ├── Program_AddArrays_Simple_Benchmark_DefaultJob-asm.raw.html │ │ ├── Program_AddArrays_Vector_Benchmark_DefaultJob-asm.pretty.html │ │ └── Program_AddArrays_Vector_Benchmark_DefaultJob-asm.raw.html │ ├── Program.cs │ └── Simd_Sample1.csproj ├── 12_ANCM_AspNetCore21 └── ANCM_Sample │ ├── ANCM_Sample.csproj │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ └── CustomProfile.pubxml │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 13_CsStructLayout └── StructLayoutSample │ ├── Program.cs │ └── StructLayoutSample.csproj ├── 14_CsExceptionFilter ├── CsExceptionFilterSample_01 │ ├── CsExceptionFilterSample_01.csproj │ └── Program.cs ├── CsExceptionFilterSample_FullFramework_02 │ ├── App.config │ ├── CsExceptionFilterSample02_FullFramework.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── FilterVsCatchBlockBenchmark_03 │ ├── BenchmarkDotNet.Artifacts │ └── results │ │ ├── Program-report-github.md │ │ ├── Program-report.csv │ │ └── Program-report.html │ ├── FilterVsCatchBlockBenchmark_03.csproj │ └── Program.cs ├── 15_AWS ├── SchnitzelOrNot.Uwp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── SchnitzelOrNot.Uwp.csproj ├── SchnitzelOrNot.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── Resources │ │ ├── GreenC.png │ │ └── RedX.png │ ├── SchnitzelOrNot.iOS.csproj │ ├── ViewController.cs │ ├── ViewController.designer.cs │ └── packages.config ├── SchnitzelOrNotClient │ ├── SchnitzelDetector.cs │ └── SchnitzelOrNotClient.csproj ├── SchnitzelOrNotLambda │ ├── Function.cs │ ├── SchnitzelOrNotLambda.csproj │ └── aws-lambda-tools-defaults.json ├── TestConsoleApp │ ├── 2396971_Landjunker-Frische-grobe-Bratwurst-roh_original.jpg │ ├── App.config │ ├── Hot_dog_with_mustard.png │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Schnitzel-Wiener-Art.jpg │ ├── TestConsoleApp.csproj │ ├── Wiener-Schnitzel-1A-49a1616656a6c.jpg │ ├── bratwurst_freisteller_01.png │ ├── default-img-101715.jpg │ ├── packages.config │ ├── wiener-schnitzel (1).jpg │ └── wiener-schnitzel.jpg └── UwpSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── SchnitzelOrNot.Uwp.csproj ├── 16_RefStruct └── RefStructSamples │ ├── Program.cs │ └── RefStructSamples.csproj ├── 17_RssInAspNetCore ├── .DS_Store └── SampleAppWithRssFeed │ ├── Controllers │ ├── HomeController.cs │ └── RssController.cs │ ├── Data │ ├── DummyBlogDataStorage.cs │ └── IBlogDataStorage.cs │ ├── Models │ ├── BlogItem.cs │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleAppWithRssFeed.csproj │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── 18_DiagnosticSource ├── DiagnosticSourceSample │ ├── DiagnosticSourceSample.csproj │ ├── MySampleLibrary.cs │ └── Program.cs └── SampleAspNetCoreApp │ ├── Controllers │ └── ValuesController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleAspNetCoreApp.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── DotNetConceptOfTheWeek.sln ├── README.md ├── docker-compose.ci.build.yml ├── docker-compose.dcproj ├── docker-compose.override.yml └── docker-compose.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/.gitignore -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/01_CancellationSample_After.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/01_CancellationSample_After.csproj -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/App.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/App.xaml.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/StoreLogo.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/DataAccess/CryptoCurrencyDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/DataAccess/CryptoCurrencyDataSource.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/MainPage.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/MainPage.xaml.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/MainPageViewModel.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Model/HistoricalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Model/HistoricalValue.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Model/TimeFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Model/TimeFrame.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Package.appxmanifest -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/Properties/Default.rd.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.dll -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.pri -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Properties/Syncfusion.SfChart.UWP_2015.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Properties/Syncfusion.SfChart.UWP_2015.rd.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xr.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_After/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_After/project.json -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/01_CancellationSample_Before.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/01_CancellationSample_Before.csproj -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/App.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/App.xaml.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/StoreLogo.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/DataAccess/CryptoCurrencyDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/DataAccess/CryptoCurrencyDataSource.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/MainPage.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/MainPage.xaml.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/MainPageViewModel.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Model/HistoricalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Model/HistoricalValue.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Model/TimeFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Model/TimeFrame.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Package.appxmanifest -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/Properties/Default.rd.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.dll -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.pri -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartArea/Themes/SfChart3D.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/3D/ChartSeries/Themes/ChartSeries.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartArea/Themes/ChartArea.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartAxis/Themes/ChartAxis.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/ChartSeries/Themes/ChartSeries.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ChartToolBar.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/ResizableScrollBar.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/Resizer.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Controls/Themes/SfRangeNavigator.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Properties/Syncfusion.SfChart.UWP_2015.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Properties/Syncfusion.SfChart.UWP_2015.rd.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Sparkline/Themes/Sparkline.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Syncfusion.SfChart.UWP.xr.xml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Common.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Legend.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/Generic.Symbol.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xaml -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/SyncfusionAssemblyRefs/Syncfusion.SfChart.UWP/Themes/generic.xbf -------------------------------------------------------------------------------- /01_CancellationSample/01_CancellationSample_Before/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/01_CancellationSample/01_CancellationSample_Before/project.json -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/02_BitcoinTracker.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/02_BitcoinTracker.Uwp.csproj -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/App.xaml -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/MainPage.xaml -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/MainPage.xaml.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/02_BitcoinTracker.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/02_BitcoinTracker.iOS.csproj -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Entitlements.plist -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Info.plist -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Main.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/Main.storyboard -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/ViewController.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_BitcoinTracker.iOS/ViewController.designer.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/02_CryptoDataSourceLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/02_CryptoDataSourceLib.csproj -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/CryptoCurrencyUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/CryptoCurrencyUpdate.cs -------------------------------------------------------------------------------- /02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/CryptoDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/02_WebSocket_DotNetStandard/02_CryptoDataSourceLib/CryptoDataSource.cs -------------------------------------------------------------------------------- /03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/App.config -------------------------------------------------------------------------------- /03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Cs8NullableReferenceTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Cs8NullableReferenceTypes.csproj -------------------------------------------------------------------------------- /03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Program.cs -------------------------------------------------------------------------------- /03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/03_CSharp8NullableReferenceTypes/Cs8NullableReferenceTypes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04_CSharp_CovarianceAndContravariance/CovarianceAndContravarianceSample/CovarianceAndContravarianceSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/04_CSharp_CovarianceAndContravariance/CovarianceAndContravarianceSample/CovarianceAndContravarianceSample.csproj -------------------------------------------------------------------------------- /04_CSharp_CovarianceAndContravariance/CovarianceAndContravarianceSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/04_CSharp_CovarianceAndContravariance/CovarianceAndContravarianceSample/Program.cs -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-disassembly-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-disassembly-report.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report-github.md -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report.csv -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/BenchmarkingLib.Program-report.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithLinq_DefaultJob-asm.pretty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithLinq_DefaultJob-asm.pretty.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithLinq_DefaultJob-asm.raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithLinq_DefaultJob-asm.raw.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithNonLinq_DefaultJob-asm.pretty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithNonLinq_DefaultJob-asm.pretty.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithNonLinq_DefaultJob-asm.raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkDotNet.Artifacts/results/Program_CalculateWithNonLinq_DefaultJob-asm.raw.html -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/BenchmarkingLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/BenchmarkingLib.csproj -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/MSFT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/MSFT.csv -------------------------------------------------------------------------------- /05_BenchmarkDotNet/BenchmarkingLib/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/BenchmarkingLib/Program.cs -------------------------------------------------------------------------------- /05_BenchmarkDotNet/LibToBenchMark/HistoricalPriceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/LibToBenchMark/HistoricalPriceReader.cs -------------------------------------------------------------------------------- /05_BenchmarkDotNet/LibToBenchMark/HistoricalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/LibToBenchMark/HistoricalValue.cs -------------------------------------------------------------------------------- /05_BenchmarkDotNet/LibToBenchMark/LibToBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/LibToBenchMark/LibToBenchmark.csproj -------------------------------------------------------------------------------- /05_BenchmarkDotNet/LibToBenchMark/Quote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/LibToBenchMark/Quote.cs -------------------------------------------------------------------------------- /05_BenchmarkDotNet/LibToBenchMark/SimpleMovingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/05_BenchmarkDotNet/LibToBenchMark/SimpleMovingAverage.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/AspNetCore_SocialLogin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/AspNetCore_SocialLogin.csproj -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Controllers/AuthController.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Program.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Properties/launchSettings.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Startup.cs -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Auth/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Auth/Login.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/About.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/appsettings.Development.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/appsettings.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/bundleconfig.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/css/site.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/favicon.ico -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/06_AspNetCore_SocialLogin/AspNetCore_SocialLogin/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /07_Fsharp/CsharpAppUsingFsharpLib/CsharpAppUsingFsharpLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/CsharpAppUsingFsharpLib/CsharpAppUsingFsharpLib.csproj -------------------------------------------------------------------------------- /07_Fsharp/CsharpAppUsingFsharpLib/MSFT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/CsharpAppUsingFsharpLib/MSFT.csv -------------------------------------------------------------------------------- /07_Fsharp/CsharpAppUsingFsharpLib/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/CsharpAppUsingFsharpLib/Program.cs -------------------------------------------------------------------------------- /07_Fsharp/StockAnalyticsLib/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/StockAnalyticsLib/Library.fs -------------------------------------------------------------------------------- /07_Fsharp/StockAnalyticsLib/MSFT.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/StockAnalyticsLib/MSFT.csv -------------------------------------------------------------------------------- /07_Fsharp/StockAnalyticsLib/Script1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/StockAnalyticsLib/Script1.fsx -------------------------------------------------------------------------------- /07_Fsharp/StockAnalyticsLib/StockAnalyticsLib.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/07_Fsharp/StockAnalyticsLib/StockAnalyticsLib.fsproj -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/AppDelegate.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Entitlements.plist -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Info.plist -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/LaunchScreen.storyboard -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Main.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/Main.storyboard -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/SignalRClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/SignalRClient.csproj -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/ViewController.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/ViewController.designer.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRClient/packages.config -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Chat.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Program.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Properties/launchSettings.json -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/SignalRDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/SignalRDemo.csproj -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Startup.cs -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/package-lock.json -------------------------------------------------------------------------------- /08_SignalRCore/SignalRDemo/wwwroot/signalr-client-1.0.0-alpha2-final.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/08_SignalRCore/SignalRDemo/wwwroot/signalr-client-1.0.0-alpha2-final.js -------------------------------------------------------------------------------- /09_Blazor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/09_Blazor/readme.txt -------------------------------------------------------------------------------- /10_AspNetCoreDocker/DockerSample/DockerSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/10_AspNetCoreDocker/DockerSample/DockerSample.csproj -------------------------------------------------------------------------------- /10_AspNetCoreDocker/DockerSample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/10_AspNetCoreDocker/DockerSample/Dockerfile -------------------------------------------------------------------------------- /10_AspNetCoreDocker/DockerSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/10_AspNetCoreDocker/DockerSample/Program.cs -------------------------------------------------------------------------------- /10_AspNetCoreDocker/DockerSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/10_AspNetCoreDocker/DockerSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /10_AspNetCoreDocker/DockerSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/10_AspNetCoreDocker/DockerSample/Startup.cs -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-disassembly-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-disassembly-report.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report-github.md -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report.csv -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program-report.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Simple_Benchmark_DefaultJob-asm.pretty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Simple_Benchmark_DefaultJob-asm.pretty.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Simple_Benchmark_DefaultJob-asm.raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Simple_Benchmark_DefaultJob-asm.raw.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Vector_Benchmark_DefaultJob-asm.pretty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Vector_Benchmark_DefaultJob-asm.pretty.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Vector_Benchmark_DefaultJob-asm.raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/BenchmarkDotNet.Artifacts/results/Program_AddArrays_Vector_Benchmark_DefaultJob-asm.raw.html -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/Program.cs -------------------------------------------------------------------------------- /11_Vectorization_Simd/Simd_Sample1/Simd_Sample1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/11_Vectorization_Simd/Simd_Sample1/Simd_Sample1.csproj -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/ANCM_Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/ANCM_Sample.csproj -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Program.cs -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Properties/PublishProfiles/CustomProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Properties/PublishProfiles/CustomProfile.pubxml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Properties/launchSettings.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Startup.cs -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/appsettings.Development.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/appsettings.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/bundleconfig.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/css/site.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/12_ANCM_AspNetCore21/ANCM_Sample/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /13_CsStructLayout/StructLayoutSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/13_CsStructLayout/StructLayoutSample/Program.cs -------------------------------------------------------------------------------- /13_CsStructLayout/StructLayoutSample/StructLayoutSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/13_CsStructLayout/StructLayoutSample/StructLayoutSample.csproj -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_01/CsExceptionFilterSample_01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_01/CsExceptionFilterSample_01.csproj -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_01/Program.cs -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/App.config -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/CsExceptionFilterSample02_FullFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/CsExceptionFilterSample02_FullFramework.csproj -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/Program.cs -------------------------------------------------------------------------------- /14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/CsExceptionFilterSample_FullFramework_02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report-github.md -------------------------------------------------------------------------------- /14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report.csv -------------------------------------------------------------------------------- /14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/BenchmarkDotNet.Artifacts/results/Program-report.html -------------------------------------------------------------------------------- /14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/FilterVsCatchBlockBenchmark_03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/FilterVsCatchBlockBenchmark_03.csproj -------------------------------------------------------------------------------- /14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/14_CsExceptionFilter/FilterVsCatchBlockBenchmark_03/Program.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/App.xaml -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/App.xaml.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/MainPage.xaml -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/MainPage.xaml.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.Uwp/SchnitzelOrNot.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.Uwp/SchnitzelOrNot.Uwp.csproj -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Entitlements.plist -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Info.plist -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Main.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Main.storyboard -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Resources/GreenC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Resources/GreenC.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/Resources/RedX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/Resources/RedX.png -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/SchnitzelOrNot.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/SchnitzelOrNot.iOS.csproj -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/ViewController.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/ViewController.designer.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNot.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNot.iOS/packages.config -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNotClient/SchnitzelDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNotClient/SchnitzelDetector.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNotClient/SchnitzelOrNotClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNotClient/SchnitzelOrNotClient.csproj -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNotLambda/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNotLambda/Function.cs -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNotLambda/SchnitzelOrNotLambda.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNotLambda/SchnitzelOrNotLambda.csproj -------------------------------------------------------------------------------- /15_AWS/SchnitzelOrNotLambda/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/SchnitzelOrNotLambda/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/2396971_Landjunker-Frische-grobe-Bratwurst-roh_original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/2396971_Landjunker-Frische-grobe-Bratwurst-roh_original.jpg -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/App.config -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/Hot_dog_with_mustard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/Hot_dog_with_mustard.png -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/Program.cs -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/Schnitzel-Wiener-Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/Schnitzel-Wiener-Art.jpg -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/TestConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/TestConsoleApp.csproj -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/Wiener-Schnitzel-1A-49a1616656a6c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/Wiener-Schnitzel-1A-49a1616656a6c.jpg -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/bratwurst_freisteller_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/bratwurst_freisteller_01.png -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/default-img-101715.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/default-img-101715.jpg -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/packages.config -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/wiener-schnitzel (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/wiener-schnitzel (1).jpg -------------------------------------------------------------------------------- /15_AWS/TestConsoleApp/wiener-schnitzel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/TestConsoleApp/wiener-schnitzel.jpg -------------------------------------------------------------------------------- /15_AWS/UwpSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/App.xaml -------------------------------------------------------------------------------- /15_AWS/UwpSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/App.xaml.cs -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /15_AWS/UwpSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/MainPage.xaml -------------------------------------------------------------------------------- /15_AWS/UwpSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /15_AWS/UwpSample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Package.appxmanifest -------------------------------------------------------------------------------- /15_AWS/UwpSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15_AWS/UwpSample/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/Properties/Default.rd.xml -------------------------------------------------------------------------------- /15_AWS/UwpSample/SchnitzelOrNot.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/15_AWS/UwpSample/SchnitzelOrNot.Uwp.csproj -------------------------------------------------------------------------------- /16_RefStruct/RefStructSamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/16_RefStruct/RefStructSamples/Program.cs -------------------------------------------------------------------------------- /16_RefStruct/RefStructSamples/RefStructSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/16_RefStruct/RefStructSamples/RefStructSamples.csproj -------------------------------------------------------------------------------- /17_RssInAspNetCore/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/.DS_Store -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Controllers/HomeController.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Controllers/RssController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Controllers/RssController.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Data/DummyBlogDataStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Data/DummyBlogDataStorage.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Data/IBlogDataStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Data/IBlogDataStorage.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Models/BlogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Models/BlogItem.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Program.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Properties/launchSettings.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/SampleAppWithRssFeed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/SampleAppWithRssFeed.csproj -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Startup.cs -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/About.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/appsettings.Development.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/appsettings.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/css/site.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/favicon.ico -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/js/site.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/17_RssInAspNetCore/SampleAppWithRssFeed/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /18_DiagnosticSource/DiagnosticSourceSample/DiagnosticSourceSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/DiagnosticSourceSample/DiagnosticSourceSample.csproj -------------------------------------------------------------------------------- /18_DiagnosticSource/DiagnosticSourceSample/MySampleLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/DiagnosticSourceSample/MySampleLibrary.cs -------------------------------------------------------------------------------- /18_DiagnosticSource/DiagnosticSourceSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/DiagnosticSourceSample/Program.cs -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/Program.cs -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/SampleAspNetCoreApp.csproj -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/Startup.cs -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/appsettings.Development.json -------------------------------------------------------------------------------- /18_DiagnosticSource/SampleAspNetCoreApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/18_DiagnosticSource/SampleAspNetCoreApp/appsettings.json -------------------------------------------------------------------------------- /DotNetConceptOfTheWeek.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/DotNetConceptOfTheWeek.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.ci.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/docker-compose.ci.build.yml -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkalapos/DotNetConceptOfTheWeek/HEAD/docker-compose.yml --------------------------------------------------------------------------------