├── .gitignore ├── LICENSE ├── README.md ├── Section1 ├── Disposable │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Disposable.sln │ └── Disposable │ │ ├── Disposable.csproj │ │ └── Program.cs ├── Equality │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Equality.sln │ └── Equality │ │ ├── Equality.csproj │ │ └── Program.cs ├── Exceptions │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Exceptions.sln │ └── Exceptions │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Exceptions.csproj │ │ └── Program.cs ├── References │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── References.sln │ ├── References │ │ ├── Program.cs │ │ └── References.csproj │ └── References_Fixed │ │ ├── Program.cs │ │ └── References_Fixed.csproj ├── Virtual │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Virtual.sln │ └── Virtual │ │ ├── Program.cs │ │ └── Virtual.csproj └── Warnings │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Warnings.sln │ └── Warnings │ ├── Program.cs │ └── Warnings.csproj ├── Section10 ├── Hashing │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Hashing.csproj │ └── Program.cs ├── Secrets │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Secrets.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Validation │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Movie.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Validation.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Section11 └── SampleWeb │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── SampleWeb.sln │ └── SampleWeb │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SampleWeb.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Section2 ├── DateTime │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── DateTime.sln │ └── DateTime │ │ ├── DateTime.csproj │ │ └── Program.cs ├── Floats │ ├── Floats.sln │ └── Floats │ │ ├── Floats.csproj │ │ └── Program.cs ├── IntLong │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── IntLong.sln │ └── IntLong │ │ ├── IntLong.csproj │ │ └── Program.cs ├── Strings │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Strings.sln │ └── Strings │ │ ├── Program.cs │ │ └── Strings.csproj └── Structs │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Structs.sln │ └── Structs │ ├── Program.cs │ └── Structs.csproj ├── Section3 ├── DesignPatterns │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── DesignPatterns.sln │ └── DesignPatterns │ │ ├── DesignPatterns.csproj │ │ └── Program.cs ├── SOLID │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── SOLID.sln │ └── SOLID │ │ ├── Program.cs │ │ └── SOLID.csproj └── Singleton │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Singleton.sln │ └── Singleton │ ├── Program.cs │ └── Singleton.csproj ├── Section4 ├── .vscode │ ├── launch.json │ └── tasks.json ├── Find │ ├── Find.sln │ └── Find │ │ ├── Find.csproj │ │ └── Program.cs ├── Linq │ ├── Linq.sln │ └── Linq │ │ ├── Linq.csproj │ │ └── Program.cs └── OrderBy │ ├── OrderBy.sln │ └── OrderBy │ ├── OrderBy.csproj │ └── Program.cs ├── Section5 ├── MemoryBarriers │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── MemoryBarriers.sln │ └── MemoryBarriers │ │ ├── MemoryBarriers.csproj │ │ └── Program.cs ├── ResultOrWait │ ├── ResultOrWait.sln │ └── ResultOrWait │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── ResultOrWait.csproj ├── TaskSignature │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── TaskSignature.sln │ └── TaskSignature │ │ ├── Program.cs │ │ └── TaskSignature.csproj └── ThreadSafety │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── ThreadSafety.sln │ └── ThreadSafety │ ├── Program.cs │ └── ThreadSafety.csproj ├── Section6 ├── InjectTooMany │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── InjectTooMany.sln │ └── InjectTooMany │ │ ├── InjectTooMany.csproj │ │ └── Program.cs ├── LifeTimes │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── LifeTimes.sln │ └── LifeTimes │ │ ├── LifeTimes.csproj │ │ └── Program.cs ├── NotJustTesting │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── NotJustTesting.sln │ └── NotJustTesting │ │ ├── NotJustTesting.csproj │ │ └── Program.cs └── ServiceLocator │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── ServiceLocator.sln │ └── ServiceLocator │ ├── Program.cs │ └── ServiceLocator.csproj ├── Section7 └── EverythingPublic │ ├── EverythingPublic.sln │ └── EverythingPublic │ ├── EverythingPublic.csproj │ ├── Migrations │ ├── 20190823133913_InitialCreate.Designer.cs │ ├── 20190823133913_InitialCreate.cs │ └── BloggingContextModelSnapshot.cs │ ├── Program.cs │ └── blogging.db └── Section8 ├── HttpClientFactory ├── .vscode │ ├── launch.json │ └── tasks.json ├── HttpClientFactory.sln └── HttpClientFactory │ ├── HttpClientFactory.csproj │ └── Program.cs └── HttpRedir ├── .vscode ├── launch.json └── tasks.json ├── HttpRedir.sln └── HttpRedir ├── HttpRedir.csproj └── Program.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/README.md -------------------------------------------------------------------------------- /Section1/Disposable/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Disposable/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Disposable/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Disposable/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Disposable/Disposable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Disposable/Disposable.sln -------------------------------------------------------------------------------- /Section1/Disposable/Disposable/Disposable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Disposable/Disposable/Disposable.csproj -------------------------------------------------------------------------------- /Section1/Disposable/Disposable/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Disposable/Disposable/Program.cs -------------------------------------------------------------------------------- /Section1/Equality/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Equality/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Equality/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Equality/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Equality/Equality.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Equality/Equality.sln -------------------------------------------------------------------------------- /Section1/Equality/Equality/Equality.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Equality/Equality/Equality.csproj -------------------------------------------------------------------------------- /Section1/Equality/Equality/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Equality/Equality/Program.cs -------------------------------------------------------------------------------- /Section1/Exceptions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Exceptions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Exceptions/Exceptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/Exceptions.sln -------------------------------------------------------------------------------- /Section1/Exceptions/Exceptions/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/Exceptions/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Exceptions/Exceptions/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/Exceptions/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Exceptions/Exceptions/Exceptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/Exceptions/Exceptions.csproj -------------------------------------------------------------------------------- /Section1/Exceptions/Exceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Exceptions/Exceptions/Program.cs -------------------------------------------------------------------------------- /Section1/References/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/References/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/References/References.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/References.sln -------------------------------------------------------------------------------- /Section1/References/References/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/References/Program.cs -------------------------------------------------------------------------------- /Section1/References/References/References.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/References/References.csproj -------------------------------------------------------------------------------- /Section1/References/References_Fixed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/References_Fixed/Program.cs -------------------------------------------------------------------------------- /Section1/References/References_Fixed/References_Fixed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/References/References_Fixed/References_Fixed.csproj -------------------------------------------------------------------------------- /Section1/Virtual/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Virtual/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Virtual/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Virtual/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Virtual/Virtual.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Virtual/Virtual.sln -------------------------------------------------------------------------------- /Section1/Virtual/Virtual/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Virtual/Virtual/Program.cs -------------------------------------------------------------------------------- /Section1/Virtual/Virtual/Virtual.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Virtual/Virtual/Virtual.csproj -------------------------------------------------------------------------------- /Section1/Warnings/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Warnings/.vscode/launch.json -------------------------------------------------------------------------------- /Section1/Warnings/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Warnings/.vscode/tasks.json -------------------------------------------------------------------------------- /Section1/Warnings/Warnings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Warnings/Warnings.sln -------------------------------------------------------------------------------- /Section1/Warnings/Warnings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Warnings/Warnings/Program.cs -------------------------------------------------------------------------------- /Section1/Warnings/Warnings/Warnings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section1/Warnings/Warnings/Warnings.csproj -------------------------------------------------------------------------------- /Section10/Hashing/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Hashing/.vscode/launch.json -------------------------------------------------------------------------------- /Section10/Hashing/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Hashing/.vscode/tasks.json -------------------------------------------------------------------------------- /Section10/Hashing/Hashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Hashing/Hashing.csproj -------------------------------------------------------------------------------- /Section10/Hashing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Hashing/Program.cs -------------------------------------------------------------------------------- /Section10/Secrets/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/.vscode/launch.json -------------------------------------------------------------------------------- /Section10/Secrets/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/.vscode/tasks.json -------------------------------------------------------------------------------- /Section10/Secrets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/Program.cs -------------------------------------------------------------------------------- /Section10/Secrets/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/Properties/launchSettings.json -------------------------------------------------------------------------------- /Section10/Secrets/Secrets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/Secrets.csproj -------------------------------------------------------------------------------- /Section10/Secrets/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/Startup.cs -------------------------------------------------------------------------------- /Section10/Secrets/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/appsettings.Development.json -------------------------------------------------------------------------------- /Section10/Secrets/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Secrets/appsettings.json -------------------------------------------------------------------------------- /Section10/Validation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/.vscode/launch.json -------------------------------------------------------------------------------- /Section10/Validation/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/.vscode/tasks.json -------------------------------------------------------------------------------- /Section10/Validation/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Error.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Section10/Validation/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Index.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Section10/Validation/Pages/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Movie.cs -------------------------------------------------------------------------------- /Section10/Validation/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Section10/Validation/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Section10/Validation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Program.cs -------------------------------------------------------------------------------- /Section10/Validation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Properties/launchSettings.json -------------------------------------------------------------------------------- /Section10/Validation/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Startup.cs -------------------------------------------------------------------------------- /Section10/Validation/Validation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/Validation.csproj -------------------------------------------------------------------------------- /Section10/Validation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/appsettings.Development.json -------------------------------------------------------------------------------- /Section10/Validation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/appsettings.json -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/css/site.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/js/site.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Section10/Validation/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section10/Validation/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Section11/SampleWeb/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/.vscode/launch.json -------------------------------------------------------------------------------- /Section11/SampleWeb/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/.vscode/tasks.json -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb.sln -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Error.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Index.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Program.cs -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Properties/launchSettings.json -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/SampleWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/SampleWeb.csproj -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/Startup.cs -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/appsettings.Development.json -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/appsettings.json -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/css/site.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/js/site.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section11/SampleWeb/SampleWeb/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Section2/DateTime/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/DateTime/.vscode/launch.json -------------------------------------------------------------------------------- /Section2/DateTime/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/DateTime/.vscode/tasks.json -------------------------------------------------------------------------------- /Section2/DateTime/DateTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/DateTime/DateTime.sln -------------------------------------------------------------------------------- /Section2/DateTime/DateTime/DateTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/DateTime/DateTime/DateTime.csproj -------------------------------------------------------------------------------- /Section2/DateTime/DateTime/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/DateTime/DateTime/Program.cs -------------------------------------------------------------------------------- /Section2/Floats/Floats.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Floats/Floats.sln -------------------------------------------------------------------------------- /Section2/Floats/Floats/Floats.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Floats/Floats/Floats.csproj -------------------------------------------------------------------------------- /Section2/Floats/Floats/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Floats/Floats/Program.cs -------------------------------------------------------------------------------- /Section2/IntLong/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/IntLong/.vscode/launch.json -------------------------------------------------------------------------------- /Section2/IntLong/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/IntLong/.vscode/tasks.json -------------------------------------------------------------------------------- /Section2/IntLong/IntLong.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/IntLong/IntLong.sln -------------------------------------------------------------------------------- /Section2/IntLong/IntLong/IntLong.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/IntLong/IntLong/IntLong.csproj -------------------------------------------------------------------------------- /Section2/IntLong/IntLong/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/IntLong/IntLong/Program.cs -------------------------------------------------------------------------------- /Section2/Strings/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Strings/.vscode/launch.json -------------------------------------------------------------------------------- /Section2/Strings/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Strings/.vscode/tasks.json -------------------------------------------------------------------------------- /Section2/Strings/Strings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Strings/Strings.sln -------------------------------------------------------------------------------- /Section2/Strings/Strings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Strings/Strings/Program.cs -------------------------------------------------------------------------------- /Section2/Strings/Strings/Strings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Strings/Strings/Strings.csproj -------------------------------------------------------------------------------- /Section2/Structs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Structs/.vscode/launch.json -------------------------------------------------------------------------------- /Section2/Structs/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Structs/.vscode/tasks.json -------------------------------------------------------------------------------- /Section2/Structs/Structs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Structs/Structs.sln -------------------------------------------------------------------------------- /Section2/Structs/Structs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Structs/Structs/Program.cs -------------------------------------------------------------------------------- /Section2/Structs/Structs/Structs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section2/Structs/Structs/Structs.csproj -------------------------------------------------------------------------------- /Section3/DesignPatterns/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/DesignPatterns/.vscode/launch.json -------------------------------------------------------------------------------- /Section3/DesignPatterns/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/DesignPatterns/.vscode/tasks.json -------------------------------------------------------------------------------- /Section3/DesignPatterns/DesignPatterns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/DesignPatterns/DesignPatterns.sln -------------------------------------------------------------------------------- /Section3/DesignPatterns/DesignPatterns/DesignPatterns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/DesignPatterns/DesignPatterns/DesignPatterns.csproj -------------------------------------------------------------------------------- /Section3/DesignPatterns/DesignPatterns/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/DesignPatterns/DesignPatterns/Program.cs -------------------------------------------------------------------------------- /Section3/SOLID/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/SOLID/.vscode/launch.json -------------------------------------------------------------------------------- /Section3/SOLID/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/SOLID/.vscode/tasks.json -------------------------------------------------------------------------------- /Section3/SOLID/SOLID.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/SOLID/SOLID.sln -------------------------------------------------------------------------------- /Section3/SOLID/SOLID/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/SOLID/SOLID/Program.cs -------------------------------------------------------------------------------- /Section3/SOLID/SOLID/SOLID.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/SOLID/SOLID/SOLID.csproj -------------------------------------------------------------------------------- /Section3/Singleton/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/Singleton/.vscode/launch.json -------------------------------------------------------------------------------- /Section3/Singleton/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/Singleton/.vscode/tasks.json -------------------------------------------------------------------------------- /Section3/Singleton/Singleton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/Singleton/Singleton.sln -------------------------------------------------------------------------------- /Section3/Singleton/Singleton/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/Singleton/Singleton/Program.cs -------------------------------------------------------------------------------- /Section3/Singleton/Singleton/Singleton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section3/Singleton/Singleton/Singleton.csproj -------------------------------------------------------------------------------- /Section4/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/.vscode/launch.json -------------------------------------------------------------------------------- /Section4/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/.vscode/tasks.json -------------------------------------------------------------------------------- /Section4/Find/Find.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Find/Find.sln -------------------------------------------------------------------------------- /Section4/Find/Find/Find.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Find/Find/Find.csproj -------------------------------------------------------------------------------- /Section4/Find/Find/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Find/Find/Program.cs -------------------------------------------------------------------------------- /Section4/Linq/Linq.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Linq/Linq.sln -------------------------------------------------------------------------------- /Section4/Linq/Linq/Linq.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Linq/Linq/Linq.csproj -------------------------------------------------------------------------------- /Section4/Linq/Linq/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/Linq/Linq/Program.cs -------------------------------------------------------------------------------- /Section4/OrderBy/OrderBy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/OrderBy/OrderBy.sln -------------------------------------------------------------------------------- /Section4/OrderBy/OrderBy/OrderBy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/OrderBy/OrderBy/OrderBy.csproj -------------------------------------------------------------------------------- /Section4/OrderBy/OrderBy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section4/OrderBy/OrderBy/Program.cs -------------------------------------------------------------------------------- /Section5/MemoryBarriers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/MemoryBarriers/.vscode/launch.json -------------------------------------------------------------------------------- /Section5/MemoryBarriers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/MemoryBarriers/.vscode/tasks.json -------------------------------------------------------------------------------- /Section5/MemoryBarriers/MemoryBarriers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/MemoryBarriers/MemoryBarriers.sln -------------------------------------------------------------------------------- /Section5/MemoryBarriers/MemoryBarriers/MemoryBarriers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/MemoryBarriers/MemoryBarriers/MemoryBarriers.csproj -------------------------------------------------------------------------------- /Section5/MemoryBarriers/MemoryBarriers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/MemoryBarriers/MemoryBarriers/Program.cs -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait.sln -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait/App.xaml -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait/App.xaml.cs -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait/MainWindow.xaml -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Section5/ResultOrWait/ResultOrWait/ResultOrWait.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ResultOrWait/ResultOrWait/ResultOrWait.csproj -------------------------------------------------------------------------------- /Section5/TaskSignature/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/TaskSignature/.vscode/launch.json -------------------------------------------------------------------------------- /Section5/TaskSignature/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/TaskSignature/.vscode/tasks.json -------------------------------------------------------------------------------- /Section5/TaskSignature/TaskSignature.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/TaskSignature/TaskSignature.sln -------------------------------------------------------------------------------- /Section5/TaskSignature/TaskSignature/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/TaskSignature/TaskSignature/Program.cs -------------------------------------------------------------------------------- /Section5/TaskSignature/TaskSignature/TaskSignature.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/TaskSignature/TaskSignature/TaskSignature.csproj -------------------------------------------------------------------------------- /Section5/ThreadSafety/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ThreadSafety/.vscode/launch.json -------------------------------------------------------------------------------- /Section5/ThreadSafety/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ThreadSafety/.vscode/tasks.json -------------------------------------------------------------------------------- /Section5/ThreadSafety/ThreadSafety.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ThreadSafety/ThreadSafety.sln -------------------------------------------------------------------------------- /Section5/ThreadSafety/ThreadSafety/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ThreadSafety/ThreadSafety/Program.cs -------------------------------------------------------------------------------- /Section5/ThreadSafety/ThreadSafety/ThreadSafety.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section5/ThreadSafety/ThreadSafety/ThreadSafety.csproj -------------------------------------------------------------------------------- /Section6/InjectTooMany/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/InjectTooMany/.vscode/launch.json -------------------------------------------------------------------------------- /Section6/InjectTooMany/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/InjectTooMany/.vscode/tasks.json -------------------------------------------------------------------------------- /Section6/InjectTooMany/InjectTooMany.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/InjectTooMany/InjectTooMany.sln -------------------------------------------------------------------------------- /Section6/InjectTooMany/InjectTooMany/InjectTooMany.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/InjectTooMany/InjectTooMany/InjectTooMany.csproj -------------------------------------------------------------------------------- /Section6/InjectTooMany/InjectTooMany/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/InjectTooMany/InjectTooMany/Program.cs -------------------------------------------------------------------------------- /Section6/LifeTimes/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/LifeTimes/.vscode/launch.json -------------------------------------------------------------------------------- /Section6/LifeTimes/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/LifeTimes/.vscode/tasks.json -------------------------------------------------------------------------------- /Section6/LifeTimes/LifeTimes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/LifeTimes/LifeTimes.sln -------------------------------------------------------------------------------- /Section6/LifeTimes/LifeTimes/LifeTimes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/LifeTimes/LifeTimes/LifeTimes.csproj -------------------------------------------------------------------------------- /Section6/LifeTimes/LifeTimes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/LifeTimes/LifeTimes/Program.cs -------------------------------------------------------------------------------- /Section6/NotJustTesting/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/NotJustTesting/.vscode/launch.json -------------------------------------------------------------------------------- /Section6/NotJustTesting/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/NotJustTesting/.vscode/tasks.json -------------------------------------------------------------------------------- /Section6/NotJustTesting/NotJustTesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/NotJustTesting/NotJustTesting.sln -------------------------------------------------------------------------------- /Section6/NotJustTesting/NotJustTesting/NotJustTesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/NotJustTesting/NotJustTesting/NotJustTesting.csproj -------------------------------------------------------------------------------- /Section6/NotJustTesting/NotJustTesting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/NotJustTesting/NotJustTesting/Program.cs -------------------------------------------------------------------------------- /Section6/ServiceLocator/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/ServiceLocator/.vscode/launch.json -------------------------------------------------------------------------------- /Section6/ServiceLocator/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/ServiceLocator/.vscode/tasks.json -------------------------------------------------------------------------------- /Section6/ServiceLocator/ServiceLocator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/ServiceLocator/ServiceLocator.sln -------------------------------------------------------------------------------- /Section6/ServiceLocator/ServiceLocator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/ServiceLocator/ServiceLocator/Program.cs -------------------------------------------------------------------------------- /Section6/ServiceLocator/ServiceLocator/ServiceLocator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section6/ServiceLocator/ServiceLocator/ServiceLocator.csproj -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic.sln -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/EverythingPublic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/EverythingPublic.csproj -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/Migrations/20190823133913_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/Migrations/20190823133913_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/Migrations/20190823133913_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/Migrations/20190823133913_InitialCreate.cs -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/Migrations/BloggingContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/Migrations/BloggingContextModelSnapshot.cs -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/Program.cs -------------------------------------------------------------------------------- /Section7/EverythingPublic/EverythingPublic/blogging.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section7/EverythingPublic/EverythingPublic/blogging.db -------------------------------------------------------------------------------- /Section8/HttpClientFactory/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpClientFactory/.vscode/launch.json -------------------------------------------------------------------------------- /Section8/HttpClientFactory/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpClientFactory/.vscode/tasks.json -------------------------------------------------------------------------------- /Section8/HttpClientFactory/HttpClientFactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpClientFactory/HttpClientFactory.sln -------------------------------------------------------------------------------- /Section8/HttpClientFactory/HttpClientFactory/HttpClientFactory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpClientFactory/HttpClientFactory/HttpClientFactory.csproj -------------------------------------------------------------------------------- /Section8/HttpClientFactory/HttpClientFactory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpClientFactory/HttpClientFactory/Program.cs -------------------------------------------------------------------------------- /Section8/HttpRedir/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpRedir/.vscode/launch.json -------------------------------------------------------------------------------- /Section8/HttpRedir/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpRedir/.vscode/tasks.json -------------------------------------------------------------------------------- /Section8/HttpRedir/HttpRedir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpRedir/HttpRedir.sln -------------------------------------------------------------------------------- /Section8/HttpRedir/HttpRedir/HttpRedir.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpRedir/HttpRedir/HttpRedir.csproj -------------------------------------------------------------------------------- /Section8/HttpRedir/HttpRedir/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/50-Things-You-ve-Been-Doing-Wrong-in-C-and-.NET-Core/HEAD/Section8/HttpRedir/HttpRedir/Program.cs --------------------------------------------------------------------------------