├── .gitattributes ├── Chapter01 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── Ch01_HelloCS │ │ │ ├── Ch01_HelloCS.csproj │ │ │ └── MyApp.cs │ │ ├── Ch01_WelcomeDotNetCore │ │ │ ├── Ch01_WelcomeDotNetCore.csproj │ │ │ └── Program.cs │ │ └── Chapter01.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch01_HelloCS │ │ ├── .DS_Store │ │ ├── Ch01_HelloCS.csproj │ │ └── MyApp.cs │ │ └── Ch01_WelcomeDotNetCore │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch01_WelcomeDotNetCore.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._Ch01_HelloCS │ ├── ._Ch01_WelcomeDotNetCore │ ├── ._Chapter01.sln │ ├── Ch01_HelloCS │ │ ├── ._Ch01_HelloCS.csproj │ │ └── ._MyApp.cs │ └── Ch01_WelcomeDotNetCore │ │ ├── ._Ch01_WelcomeDotNetCore.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch01_HelloCS │ ├── ._Ch01_WelcomeDotNetCore │ ├── Ch01_HelloCS │ ├── ._.DS_Store │ ├── ._Ch01_HelloCS.csproj │ └── ._MyApp.cs │ └── Ch01_WelcomeDotNetCore │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch01_WelcomeDotNetCore.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter02 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch02_Arguments │ │ │ ├── Ch02_Arguments.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── launchSettings.json │ │ ├── Ch02_Basics │ │ │ ├── Ch02_Basics.csproj │ │ │ └── Program.cs │ │ ├── Ch02_Numbers │ │ │ ├── Ch02_Numbers.csproj │ │ │ └── Program.cs │ │ ├── Ch02_Variables │ │ │ ├── Ch02_Variables.csproj │ │ │ └── Program.cs │ │ └── Chapter02.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch02_Arguments │ │ ├── .DS_Store │ │ ├── Ch02_Arguments.csproj │ │ └── Program.cs │ │ ├── Ch02_Basics │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch02_Basics.csproj │ │ └── Program.cs │ │ ├── Ch02_Numbers │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch02_Numbers.csproj │ │ └── Program.cs │ │ └── Ch02_Variables │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch02_Variables.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch02_Arguments │ ├── ._Ch02_Basics │ ├── ._Ch02_Numbers │ ├── ._Ch02_Variables │ ├── ._Chapter02.sln │ ├── Ch02_Arguments │ │ ├── ._Ch02_Arguments.csproj │ │ ├── ._Program.cs │ │ ├── ._Properties │ │ └── Properties │ │ │ └── ._launchSettings.json │ ├── Ch02_Basics │ │ ├── ._Ch02_Basics.csproj │ │ └── ._Program.cs │ ├── Ch02_Numbers │ │ ├── ._Ch02_Numbers.csproj │ │ └── ._Program.cs │ └── Ch02_Variables │ │ ├── ._Ch02_Variables.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch02_Arguments │ ├── ._Ch02_Basics │ ├── ._Ch02_Numbers │ ├── ._Ch02_Variables │ ├── Ch02_Arguments │ ├── ._.DS_Store │ ├── ._Ch02_Arguments.csproj │ └── ._Program.cs │ ├── Ch02_Basics │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch02_Basics.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch02_Numbers │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch02_Numbers.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch02_Variables │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch02_Variables.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter03 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch03_CastingConverting │ │ │ ├── Ch03_CastingConverting.csproj │ │ │ └── Program.cs │ │ ├── Ch03_CheckingForOverflow │ │ │ ├── Ch03_CheckingForOverflow.csproj │ │ │ └── Program.cs │ │ ├── Ch03_HandlingExceptions │ │ │ ├── Ch03_HandlingExceptions.csproj │ │ │ └── Program.cs │ │ ├── Ch03_IterationStatements │ │ │ ├── Ch03_IterationStatements.csproj │ │ │ └── Program.cs │ │ ├── Ch03_SelectionStatements │ │ │ ├── Ch03_SelectionStatements.csproj │ │ │ └── Program.cs │ │ └── Chapter03.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch03_CastingConverting │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch03_CastingConverting.csproj │ │ └── Program.cs │ │ ├── Ch03_CheckingForOverflow │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch03_CheckingForOverflow.csproj │ │ └── Program.cs │ │ ├── Ch03_HandlingExceptions │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch03_HandlingExceptions.csproj │ │ └── Program.cs │ │ ├── Ch03_IterationStatements │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch03_IterationStatements.csproj │ │ └── Program.cs │ │ └── Ch03_SelectionStatements │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch03_SelectionStatements.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch03_CastingConverting │ ├── ._Ch03_CheckingForOverflow │ ├── ._Ch03_HandlingExceptions │ ├── ._Ch03_IterationStatements │ ├── ._Ch03_SelectionStatements │ ├── ._Chapter03.sln │ ├── Ch03_CastingConverting │ │ ├── ._Ch03_CastingConverting.csproj │ │ └── ._Program.cs │ ├── Ch03_CheckingForOverflow │ │ ├── ._Ch03_CheckingForOverflow.csproj │ │ └── ._Program.cs │ ├── Ch03_HandlingExceptions │ │ ├── ._Ch03_HandlingExceptions.csproj │ │ └── ._Program.cs │ ├── Ch03_IterationStatements │ │ ├── ._Ch03_IterationStatements.csproj │ │ └── ._Program.cs │ └── Ch03_SelectionStatements │ │ ├── ._Ch03_SelectionStatements.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch03_CastingConverting │ ├── ._Ch03_CheckingForOverflow │ ├── ._Ch03_HandlingExceptions │ ├── ._Ch03_IterationStatements │ ├── ._Ch03_SelectionStatements │ ├── Ch03_CastingConverting │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch03_CastingConverting.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch03_CheckingForOverflow │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch03_CheckingForOverflow.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch03_HandlingExceptions │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch03_HandlingExceptions.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch03_IterationStatements │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch03_IterationStatements.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch03_SelectionStatements │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch03_SelectionStatements.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter04 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── Ch04_Assemblies │ │ │ ├── Ch04_Assemblies.csproj │ │ │ └── Program.cs │ │ ├── Ch04_Dictionaries │ │ │ ├── Ch04_Dictionaries.csproj │ │ │ └── Program.cs │ │ ├── Ch04_Internationalization │ │ │ ├── Ch04_Internationalization.csproj │ │ │ └── Program.cs │ │ ├── Ch04_Lists │ │ │ ├── Ch04_Lists.csproj │ │ │ └── Program.cs │ │ ├── Ch04_ManipulatingText │ │ │ ├── Ch04_ManipulatingText.csproj │ │ │ └── Program.cs │ │ ├── Ch04_RegularExpressions │ │ │ ├── Ch04_RegularExpressions.csproj │ │ │ └── Program.cs │ │ └── Chapter04.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch04_Assemblies │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch04_Assemblies.csproj │ │ └── Program.cs │ │ ├── Ch04_Dictionaries │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch04_Dictionaries.csproj │ │ └── Program.cs │ │ ├── Ch04_Internationalization │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch04_Internationalization.csproj │ │ └── Program.cs │ │ ├── Ch04_Lists │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch04_Lists.csproj │ │ └── Program.cs │ │ ├── Ch04_ManipulatingText │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch04_ManipulatingText.csproj │ │ └── Program.cs │ │ └── Ch04_RegularExpressions │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch04_RegularExpressions.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._Ch04_Assemblies │ ├── ._Ch04_Dictionaries │ ├── ._Ch04_Internationalization │ ├── ._Ch04_Lists │ ├── ._Ch04_ManipulatingText │ ├── ._Ch04_RegularExpressions │ ├── ._Chapter04.sln │ ├── Ch04_Assemblies │ │ ├── ._Ch04_Assemblies.csproj │ │ └── ._Program.cs │ ├── Ch04_Dictionaries │ │ ├── ._Ch04_Dictionaries.csproj │ │ └── ._Program.cs │ ├── Ch04_Internationalization │ │ ├── ._Ch04_Internationalization.csproj │ │ └── ._Program.cs │ ├── Ch04_Lists │ │ ├── ._Ch04_Lists.csproj │ │ └── ._Program.cs │ ├── Ch04_ManipulatingText │ │ ├── ._Ch04_ManipulatingText.csproj │ │ └── ._Program.cs │ └── Ch04_RegularExpressions │ │ ├── ._Ch04_RegularExpressions.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch04_Assemblies │ ├── ._Ch04_Dictionaries │ ├── ._Ch04_Internationalization │ ├── ._Ch04_Lists │ ├── ._Ch04_ManipulatingText │ ├── ._Ch04_RegularExpressions │ ├── Ch04_Assemblies │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_Assemblies.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch04_Dictionaries │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_Dictionaries.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch04_Internationalization │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_Internationalization.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch04_Lists │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_Lists.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch04_ManipulatingText │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_ManipulatingText.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch04_RegularExpressions │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch04_RegularExpressions.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter05 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch05_Calculator │ │ │ ├── Calculator.cs │ │ │ └── Ch05_Calculator.csproj │ │ ├── Ch05_CalculatorUnitTests │ │ │ ├── CalculatorUnitTests.cs │ │ │ └── Ch05_CalculatorUnitTests.csproj │ │ ├── Ch05_Debugging │ │ │ ├── Ch05_Debugging.csproj │ │ │ └── Program.cs │ │ ├── Ch05_Monitoring │ │ │ ├── Ch05_Monitoring.csproj │ │ │ └── Program.cs │ │ └── Chapter05.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch05_Calculator │ │ ├── .DS_Store │ │ ├── Calculator.cs │ │ └── Ch05_Calculator.csproj │ │ ├── Ch05_CalculatorUnitTests │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── CalculatorUnitTests.cs │ │ └── Ch05_CalculatorUnitTests.csproj │ │ ├── Ch05_Debugging │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch05_Debugging.csproj │ │ └── Program.cs │ │ └── Ch05_Monitoring │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch05_Monitoring.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch05_Calculator │ ├── ._Ch05_CalculatorUnitTests │ ├── ._Ch05_Debugging │ ├── ._Ch05_Monitoring │ ├── ._Chapter05.sln │ ├── Ch05_Calculator │ │ ├── ._Calculator.cs │ │ └── ._Ch05_Calculator.csproj │ ├── Ch05_CalculatorUnitTests │ │ ├── ._CalculatorUnitTests.cs │ │ └── ._Ch05_CalculatorUnitTests.csproj │ ├── Ch05_Debugging │ │ ├── ._Ch05_Debugging.csproj │ │ └── ._Program.cs │ └── Ch05_Monitoring │ │ ├── ._Ch05_Monitoring.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch05_Calculator │ ├── ._Ch05_CalculatorUnitTests │ ├── ._Ch05_Debugging │ ├── ._Ch05_Monitoring │ ├── Ch05_Calculator │ ├── ._.DS_Store │ ├── ._Calculator.cs │ └── ._Ch05_Calculator.csproj │ ├── Ch05_CalculatorUnitTests │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._CalculatorUnitTests.cs │ ├── ._Ch05_CalculatorUnitTests.csproj │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch05_Debugging │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch05_Debugging.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch05_Monitoring │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch05_Monitoring.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter06 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch06_PacktLibrary │ │ │ ├── BankAccount.cs │ │ │ ├── Ch06_PacktLibrary.csproj │ │ │ ├── Person.cs │ │ │ ├── Person2.cs │ │ │ └── WondersOfTheAncientWorld.cs │ │ ├── Ch06_PeopleApp │ │ │ ├── Ch06_PeopleApp.csproj │ │ │ └── Program.cs │ │ └── Chapter06.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch06_PacktLibrary │ │ ├── .DS_Store │ │ ├── BankAccount.cs │ │ ├── Ch06_PacktLibrary.csproj │ │ ├── Person.cs │ │ ├── Person2.cs │ │ └── WondersOfTheAncientWorld.cs │ │ └── Ch06_PeopleApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch06_PeopleApp.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch06_PacktLibrary │ ├── ._Ch06_PeopleApp │ ├── ._Chapter06.sln │ ├── Ch06_PacktLibrary │ │ ├── ._BankAccount.cs │ │ ├── ._Ch06_PacktLibrary.csproj │ │ ├── ._Person.cs │ │ ├── ._Person2.cs │ │ └── ._WondersOfTheAncientWorld.cs │ └── Ch06_PeopleApp │ │ ├── ._Ch06_PeopleApp.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch06_PacktLibrary │ ├── ._Ch06_PeopleApp │ ├── Ch06_PacktLibrary │ ├── ._.DS_Store │ ├── ._BankAccount.cs │ ├── ._Ch06_PacktLibrary.csproj │ ├── ._Person.cs │ ├── ._Person2.cs │ └── ._WondersOfTheAncientWorld.cs │ └── Ch06_PeopleApp │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch06_PeopleApp.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter07 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch07_PacktLibrary │ │ │ ├── Ch07_PacktLibrary.csproj │ │ │ ├── DisplacementVector.cs │ │ │ ├── Employee.cs │ │ │ ├── MyExtensions.cs │ │ │ ├── Person.cs │ │ │ ├── PersonComparer.cs │ │ │ └── PersonException.cs │ │ ├── Ch07_PeopleApp │ │ │ ├── Ch07_PeopleApp.csproj │ │ │ └── Program.cs │ │ └── Chapter07.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch07_PacktLibrary │ │ ├── .DS_Store │ │ ├── Ch07_PacktLibrary.csproj │ │ ├── DisplacementVector.cs │ │ ├── Employee.cs │ │ ├── MyExtensions.cs │ │ ├── Person.cs │ │ ├── PersonComparer.cs │ │ └── PersonException.cs │ │ └── Ch07_PeopleApp │ │ ├── .DS_Store │ │ ├── Ch07_PeopleApp.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch07_PacktLibrary │ ├── ._Ch07_PeopleApp │ ├── ._Chapter07.sln │ ├── Ch07_PacktLibrary │ │ ├── ._Ch07_PacktLibrary.csproj │ │ ├── ._DisplacementVector.cs │ │ ├── ._Employee.cs │ │ ├── ._MyExtensions.cs │ │ ├── ._Person.cs │ │ ├── ._PersonComparer.cs │ │ └── ._PersonException.cs │ └── Ch07_PeopleApp │ │ ├── ._Ch07_PeopleApp.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch07_PacktLibrary │ ├── ._Ch07_PeopleApp │ ├── Ch07_PacktLibrary │ ├── ._.DS_Store │ ├── ._Ch07_PacktLibrary.csproj │ ├── ._DisplacementVector.cs │ ├── ._Employee.cs │ ├── ._MyExtensions.cs │ ├── ._Person.cs │ ├── ._PersonComparer.cs │ └── ._PersonException.cs │ └── Ch07_PeopleApp │ ├── ._.DS_Store │ ├── ._Ch07_PeopleApp.csproj │ └── ._Program.cs ├── Chapter08 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch08_EFCore │ │ │ ├── Category.cs │ │ │ ├── Ch08_EFCore.csproj │ │ │ ├── ConsoleLogger.cs │ │ │ ├── Northwind.cs │ │ │ ├── Product.cs │ │ │ └── Program.cs │ │ ├── Chapter08.sln │ │ └── Northwind.sql │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch08_EFCore │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Category.cs │ │ ├── Ch08_EFCore.csproj │ │ ├── ConsoleLogger.cs │ │ ├── Northwind.cs │ │ ├── Product.cs │ │ └── Program.cs │ │ ├── Northwind.db │ │ └── NorthwindSQLite.sql └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch08_EFCore │ ├── ._Chapter08.sln │ ├── ._Northwind.sql │ └── Ch08_EFCore │ │ ├── ._Category.cs │ │ ├── ._Ch08_EFCore.csproj │ │ ├── ._ConsoleLogger.cs │ │ ├── ._Northwind.cs │ │ ├── ._Product.cs │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch08_EFCore │ ├── ._Northwind.db │ ├── ._NorthwindSQLite.sql │ └── Ch08_EFCore │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Category.cs │ ├── ._Ch08_EFCore.csproj │ ├── ._ConsoleLogger.cs │ ├── ._Northwind.cs │ ├── ._Product.cs │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter09 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch09_LinqToObjects │ │ │ ├── Ch09_LinqToObjects.csproj │ │ │ ├── MyLINQExtensions.cs │ │ │ └── Program.cs │ │ ├── Ch09_PLINQ │ │ │ ├── Ch09_PLINQ.csproj │ │ │ └── Program.cs │ │ ├── Ch09_Projection │ │ │ ├── Category.cs │ │ │ ├── Ch09_Projection.csproj │ │ │ ├── Northwind.cs │ │ │ ├── Product.cs │ │ │ ├── Program.cs │ │ │ └── settings.xml │ │ ├── Ch09_Sets │ │ │ ├── Ch09_Sets.csproj │ │ │ └── Program.cs │ │ └── Chapter09.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch09_LinqToObjects │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch09_LinqToObjects.csproj │ │ ├── MyLINQExtensions.cs │ │ └── Program.cs │ │ ├── Ch09_PLINQ │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch09_PLINQ.csproj │ │ └── Program.cs │ │ ├── Ch09_Projection │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Category.cs │ │ ├── Ch09_Projection.csproj │ │ ├── Northwind.cs │ │ ├── Northwind.db │ │ ├── NorthwindSQLite.sql │ │ ├── Product.cs │ │ ├── Program.cs │ │ └── settings.xml │ │ ├── Ch09_Sets │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch09_Sets.csproj │ │ └── Program.cs │ │ └── Northwind.db └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch09_LinqToObjects │ ├── ._Ch09_PLINQ │ ├── ._Ch09_Projection │ ├── ._Ch09_Sets │ ├── ._Chapter09.sln │ ├── Ch09_LinqToObjects │ │ ├── ._Ch09_LinqToObjects.csproj │ │ ├── ._MyLINQExtensions.cs │ │ └── ._Program.cs │ ├── Ch09_PLINQ │ │ ├── ._Ch09_PLINQ.csproj │ │ └── ._Program.cs │ ├── Ch09_Projection │ │ ├── ._Category.cs │ │ ├── ._Ch09_Projection.csproj │ │ ├── ._Northwind.cs │ │ ├── ._Product.cs │ │ ├── ._Program.cs │ │ └── ._settings.xml │ └── Ch09_Sets │ │ ├── ._Ch09_Sets.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch09_LinqToObjects │ ├── ._Ch09_PLINQ │ ├── ._Ch09_Projection │ ├── ._Ch09_Sets │ ├── ._Northwind.db │ ├── Ch09_LinqToObjects │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch09_LinqToObjects.csproj │ ├── ._MyLINQExtensions.cs │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch09_PLINQ │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch09_PLINQ.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch09_Projection │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Category.cs │ ├── ._Ch09_Projection.csproj │ ├── ._Northwind.cs │ ├── ._Northwind.db │ ├── ._NorthwindSQLite.sql │ ├── ._Product.cs │ ├── ._Program.cs │ ├── ._settings.xml │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch09_Sets │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch09_Sets.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter10 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch10_Encoding │ │ │ ├── Ch10_Encoding.csproj │ │ │ └── Program.cs │ │ ├── Ch10_FileSystem │ │ │ ├── Ch10_FileSystem.csproj │ │ │ └── Program.cs │ │ ├── Ch10_Serialization │ │ │ ├── Ch10_Serialization.csproj │ │ │ ├── Person.cs │ │ │ └── Program.cs │ │ ├── Ch10_Streams │ │ │ ├── Ch10_Streams.csproj │ │ │ └── Program.cs │ │ └── Chapter10.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch10_Encoding │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch10_Encoding.csproj │ │ └── Program.cs │ │ ├── Ch10_FileSystem │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch10_FileSystem.csproj │ │ └── Program.cs │ │ ├── Ch10_Serialization │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch10_Serialization.csproj │ │ ├── Person.cs │ │ └── Program.cs │ │ └── Ch10_Streams │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch10_Streams.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch10_Encoding │ ├── ._Ch10_FileSystem │ ├── ._Ch10_Serialization │ ├── ._Ch10_Streams │ ├── ._Chapter10.sln │ ├── Ch10_Encoding │ │ ├── ._Ch10_Encoding.csproj │ │ └── ._Program.cs │ ├── Ch10_FileSystem │ │ ├── ._Ch10_FileSystem.csproj │ │ └── ._Program.cs │ ├── Ch10_Serialization │ │ ├── ._Ch10_Serialization.csproj │ │ ├── ._Person.cs │ │ └── ._Program.cs │ └── Ch10_Streams │ │ ├── ._Ch10_Streams.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch10_Encoding │ ├── ._Ch10_FileSystem │ ├── ._Ch10_Serialization │ ├── ._Ch10_Streams │ ├── Ch10_Encoding │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch10_Encoding.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch10_FileSystem │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch10_FileSystem.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch10_Serialization │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch10_Serialization.csproj │ ├── ._Person.cs │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch10_Streams │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch10_Streams.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter11 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── Ch11_CryptographyLib │ │ │ ├── Ch11_CryptographyLib.csproj │ │ │ ├── Protector.cs │ │ │ └── User.cs │ │ ├── Ch11_EncryptionApp │ │ │ ├── Ch11_EncryptionApp.csproj │ │ │ └── Program.cs │ │ ├── Ch11_HashingApp │ │ │ ├── Ch11_HashingApp.csproj │ │ │ └── Program.cs │ │ ├── Ch11_SigningApp │ │ │ ├── Ch11_SigningApp.csproj │ │ │ └── Program.cs │ │ └── Chapter11.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch11_CryptographyLib │ │ ├── .DS_Store │ │ ├── Ch11_CryptographyLib.csproj │ │ ├── Protector.cs │ │ └── User.cs │ │ ├── Ch11_EncryptionApp │ │ ├── .DS_Store │ │ ├── Ch11_EncryptionApp.csproj │ │ └── Program.cs │ │ ├── Ch11_HashingApp │ │ ├── .DS_Store │ │ ├── Ch11_HashingApp.csproj │ │ └── Program.cs │ │ └── Ch11_SigningApp │ │ ├── .DS_Store │ │ ├── Ch11_SigningApp.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._Ch11_CryptographyLib │ ├── ._Ch11_EncryptionApp │ ├── ._Ch11_HashingApp │ ├── ._Ch11_SigningApp │ ├── ._Chapter11.sln │ ├── Ch11_CryptographyLib │ │ ├── ._Ch11_CryptographyLib.csproj │ │ ├── ._Protector.cs │ │ └── ._User.cs │ ├── Ch11_EncryptionApp │ │ ├── ._Ch11_EncryptionApp.csproj │ │ └── ._Program.cs │ ├── Ch11_HashingApp │ │ ├── ._Ch11_HashingApp.csproj │ │ └── ._Program.cs │ └── Ch11_SigningApp │ │ ├── ._Ch11_SigningApp.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch11_CryptographyLib │ ├── ._Ch11_EncryptionApp │ ├── ._Ch11_HashingApp │ ├── ._Ch11_SigningApp │ ├── Ch11_CryptographyLib │ ├── ._.DS_Store │ ├── ._Ch11_CryptographyLib.csproj │ ├── ._Protector.cs │ └── ._User.cs │ ├── Ch11_EncryptionApp │ ├── ._.DS_Store │ ├── ._Ch11_EncryptionApp.csproj │ └── ._Program.cs │ ├── Ch11_HashingApp │ ├── ._.DS_Store │ ├── ._Ch11_HashingApp.csproj │ └── ._Program.cs │ └── Ch11_SigningApp │ ├── ._.DS_Store │ ├── ._Ch11_SigningApp.csproj │ └── ._Program.cs ├── Chapter12 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── .DS_Store │ │ ├── Ch12_GUITasks │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Ch12_GUITasks.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── Ch12_LockAndMonitor │ │ │ ├── Ch12_LockAndMonitor.csproj │ │ │ └── Program.cs │ │ ├── Ch12_NestedAndChildTasks │ │ │ ├── Ch12_NestedAndChildTasks.csproj │ │ │ └── Program.cs │ │ ├── Ch12_Tasks │ │ │ ├── Ch12_Tasks.csproj │ │ │ └── Program.cs │ │ └── Chapter12.sln │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch12_LockAndMonitor │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch12_LockAndMonitor.csproj │ │ └── Program.cs │ │ ├── Ch12_NestedAndChildTasks │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch12_NestedAndChildTasks.csproj │ │ └── Program.cs │ │ └── Ch12_Tasks │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Ch12_Tasks.csproj │ │ └── Program.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._.DS_Store │ ├── ._Ch12_GUITasks │ ├── ._Ch12_LockAndMonitor │ ├── ._Ch12_NestedAndChildTasks │ ├── ._Ch12_Tasks │ ├── ._Chapter12.sln │ ├── Ch12_GUITasks │ │ ├── ._App.config │ │ ├── ._App.xaml │ │ ├── ._App.xaml.cs │ │ ├── ._Ch12_GUITasks.csproj │ │ ├── ._MainWindow.xaml │ │ ├── ._MainWindow.xaml.cs │ │ ├── ._Properties │ │ └── Properties │ │ │ ├── ._AssemblyInfo.cs │ │ │ ├── ._Resources.Designer.cs │ │ │ ├── ._Resources.resx │ │ │ ├── ._Settings.Designer.cs │ │ │ └── ._Settings.settings │ ├── Ch12_LockAndMonitor │ │ ├── ._Ch12_LockAndMonitor.csproj │ │ └── ._Program.cs │ ├── Ch12_NestedAndChildTasks │ │ ├── ._Ch12_NestedAndChildTasks.csproj │ │ └── ._Program.cs │ └── Ch12_Tasks │ │ ├── ._Ch12_Tasks.csproj │ │ └── ._Program.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch12_LockAndMonitor │ ├── ._Ch12_NestedAndChildTasks │ ├── ._Ch12_Tasks │ ├── Ch12_LockAndMonitor │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch12_LockAndMonitor.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch12_NestedAndChildTasks │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch12_NestedAndChildTasks.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ └── Ch12_Tasks │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch12_Tasks.csproj │ ├── ._Program.cs │ └── .vscode │ ├── ._launch.json │ └── ._tasks.json ├── Chapter13 ├── Code │ ├── Ch13_BouncingBall │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── Ch13_BouncingBall.csproj │ │ ├── Ch13_BouncingBall.csproj.user │ │ ├── Ch13_BouncingBall_TemporaryKey.pfx │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── project.json │ │ └── project.lock.json │ ├── Ch13_DataBinding │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── Ch13_DataBinding.csproj │ │ ├── Ch13_DataBinding_TemporaryKey.pfx │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ │ ├── Employee.cs │ │ │ └── EmployeesViewModel.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── project.json │ │ └── project.lock.json │ ├── Ch13_UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── Ch13_UWP.csproj │ │ ├── Ch13_UWP_TemporaryKey.pfx │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── project.json │ │ └── project.lock.json │ └── Chapter13.sln └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._Ch13_BouncingBall │ ├── ._Ch13_DataBinding │ ├── ._Ch13_UWP │ ├── ._Chapter13.sln │ ├── Ch13_BouncingBall │ ├── ._App.xaml │ ├── ._App.xaml.cs │ ├── ._Assets │ ├── ._Ch13_BouncingBall.csproj │ ├── ._Ch13_BouncingBall.csproj.user │ ├── ._Ch13_BouncingBall_TemporaryKey.pfx │ ├── ._MainPage.xaml │ ├── ._MainPage.xaml.cs │ ├── ._Package.appxmanifest │ ├── ._Properties │ ├── ._project.json │ ├── ._project.lock.json │ ├── Assets │ │ ├── ._LockScreenLogo.scale-200.png │ │ ├── ._SplashScreen.scale-200.png │ │ ├── ._Square150x150Logo.scale-200.png │ │ ├── ._Square44x44Logo.scale-200.png │ │ ├── ._Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── ._StoreLogo.png │ │ └── ._Wide310x150Logo.scale-200.png │ └── Properties │ │ ├── ._AssemblyInfo.cs │ │ └── ._Default.rd.xml │ ├── Ch13_DataBinding │ ├── ._App.xaml │ ├── ._App.xaml.cs │ ├── ._Assets │ ├── ._Ch13_DataBinding.csproj │ ├── ._Ch13_DataBinding_TemporaryKey.pfx │ ├── ._MainPage.xaml │ ├── ._MainPage.xaml.cs │ ├── ._Models │ ├── ._Package.appxmanifest │ ├── ._Properties │ ├── ._project.json │ ├── ._project.lock.json │ ├── Assets │ │ ├── ._LockScreenLogo.scale-200.png │ │ ├── ._SplashScreen.scale-200.png │ │ ├── ._Square150x150Logo.scale-200.png │ │ ├── ._Square44x44Logo.scale-200.png │ │ ├── ._Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── ._StoreLogo.png │ │ └── ._Wide310x150Logo.scale-200.png │ ├── Models │ │ ├── ._Employee.cs │ │ └── ._EmployeesViewModel.cs │ └── Properties │ │ ├── ._AssemblyInfo.cs │ │ └── ._Default.rd.xml │ └── Ch13_UWP │ ├── ._App.xaml │ ├── ._App.xaml.cs │ ├── ._Assets │ ├── ._Ch13_UWP.csproj │ ├── ._Ch13_UWP_TemporaryKey.pfx │ ├── ._MainPage.xaml │ ├── ._MainPage.xaml.cs │ ├── ._Package.appxmanifest │ ├── ._Properties │ ├── ._project.json │ ├── ._project.lock.json │ ├── Assets │ ├── ._LockScreenLogo.scale-200.png │ ├── ._SplashScreen.scale-200.png │ ├── ._Square150x150Logo.scale-200.png │ ├── ._Square44x44Logo.scale-200.png │ ├── ._Square44x44Logo.targetsize-24_altform-unplated.png │ ├── ._StoreLogo.png │ └── ._Wide310x150Logo.scale-200.png │ └── Properties │ ├── ._AssemblyInfo.cs │ └── ._Default.rd.xml ├── Chapter14 ├── Code files.html └── Code files.zip ├── Chapter15 ├── Code │ ├── .DS_Store │ ├── Ch15_MobileApp │ │ ├── .DS_Store │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Ch15_MobileApp.csproj │ │ ├── Ch15_MobileAppPage.xaml │ │ ├── Ch15_MobileAppPage.xaml.cs │ │ ├── IDialer.cs │ │ ├── Models │ │ │ └── Customer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Views │ │ │ ├── CustomerDetails.cs │ │ │ ├── CustomerDetails.xaml │ │ │ ├── CustomerDetails.xaml.cs │ │ │ ├── CustomerList.xaml │ │ │ └── CustomerList.xaml.cs │ │ └── packages.config │ ├── Ch15_WebApi │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch15_WebApi.csproj │ │ ├── Controllers │ │ │ ├── CustomersController.cs │ │ │ └── ValuesController.cs │ │ ├── Models │ │ │ ├── Customer.cs │ │ │ ├── CustomerRepository.cs │ │ │ ├── ICustomerRepository.cs │ │ │ └── Northwind.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Chapter15.sln │ ├── Chapter15.userprefs │ ├── Droid │ │ ├── .DS_Store │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Ch15_MobileApp.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── PhoneDialer.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ └── packages.config │ └── iOS │ │ ├── .DS_Store │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Ch15_MobileApp.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── PhoneDialer.cs │ │ └── packages.config └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._Ch15_MobileApp │ ├── ._Ch15_WebApi │ ├── ._Chapter15.sln │ ├── ._Chapter15.userprefs │ ├── ._Droid │ ├── ._iOS │ ├── Ch15_MobileApp │ ├── ._.DS_Store │ ├── ._App.xaml │ ├── ._App.xaml.cs │ ├── ._Ch15_MobileApp.csproj │ ├── ._Ch15_MobileAppPage.xaml │ ├── ._Ch15_MobileAppPage.xaml.cs │ ├── ._IDialer.cs │ ├── ._Models │ ├── ._Properties │ ├── ._Views │ ├── ._packages.config │ ├── Models │ │ └── ._Customer.cs │ ├── Properties │ │ └── ._AssemblyInfo.cs │ └── Views │ │ ├── ._CustomerDetails.cs │ │ ├── ._CustomerDetails.xaml │ │ ├── ._CustomerDetails.xaml.cs │ │ ├── ._CustomerList.xaml │ │ └── ._CustomerList.xaml.cs │ ├── Ch15_WebApi │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch15_WebApi.csproj │ ├── ._Controllers │ ├── ._Models │ ├── ._Program.cs │ ├── ._Startup.cs │ ├── ._appsettings.Development.json │ ├── ._appsettings.json │ ├── ._wwwroot │ ├── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Controllers │ │ ├── ._CustomersController.cs │ │ └── ._ValuesController.cs │ └── Models │ │ ├── ._Customer.cs │ │ ├── ._CustomerRepository.cs │ │ ├── ._ICustomerRepository.cs │ │ └── ._Northwind.cs │ ├── Droid │ ├── ._.DS_Store │ ├── ._Assets │ ├── ._Ch15_MobileApp.Droid.csproj │ ├── ._MainActivity.cs │ ├── ._PhoneDialer.cs │ ├── ._Properties │ ├── ._Resources │ ├── ._packages.config │ ├── Assets │ │ └── ._AboutAssets.txt │ ├── Properties │ │ ├── ._AndroidManifest.xml │ │ └── ._AssemblyInfo.cs │ └── Resources │ │ ├── ._AboutResources.txt │ │ ├── ._Resource.designer.cs │ │ ├── ._drawable │ │ ├── ._drawable-hdpi │ │ ├── ._drawable-xhdpi │ │ ├── ._drawable-xxhdpi │ │ ├── ._layout │ │ ├── ._values │ │ ├── drawable-hdpi │ │ └── ._icon.png │ │ ├── drawable-xhdpi │ │ └── ._icon.png │ │ ├── drawable-xxhdpi │ │ └── ._icon.png │ │ ├── drawable │ │ └── ._icon.png │ │ ├── layout │ │ ├── ._Tabbar.axml │ │ └── ._Toolbar.axml │ │ └── values │ │ └── ._styles.xml │ └── iOS │ ├── ._.DS_Store │ ├── ._AppDelegate.cs │ ├── ._Assets.xcassets │ ├── ._Ch15_MobileApp.iOS.csproj │ ├── ._Entitlements.plist │ ├── ._Info.plist │ ├── ._LaunchScreen.storyboard │ ├── ._Main.cs │ ├── ._PhoneDialer.cs │ ├── ._Resources │ ├── ._packages.config │ └── Assets.xcassets │ ├── ._AppIcon.appiconset │ ├── ._Contents.json │ └── AppIcon.appiconset │ └── ._Contents.json ├── Chapter16 ├── Code │ ├── .DS_Store │ ├── VS2017 │ │ ├── Ch16_DotNetCoreEverywhere │ │ │ ├── Ch16_DotNetCoreEverywhere.csproj │ │ │ ├── Ch16_DotNetCoreEverywhere.csproj.user │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── PublishProfiles │ │ │ │ ├── FolderProfile.pubxml │ │ │ │ └── FolderProfile.pubxml.user │ │ ├── Ch16_ImageEditorSite │ │ │ ├── .bowerrc │ │ │ ├── .dockerignore │ │ │ ├── Ch16_ImageEditorSite.csproj │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── Author.jpg │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .bower.json │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── Ch16_SharedLibrary │ │ │ ├── Ch16_SharedLibrary.csproj │ │ │ └── Class1.cs │ │ ├── Chapter16.sln │ │ ├── docker-compose.ci.build.yml │ │ ├── docker-compose.dcproj │ │ ├── docker-compose.override.yml │ │ ├── docker-compose.vs.debug.yml │ │ ├── docker-compose.vs.release.yml │ │ └── docker-compose.yml │ └── VSCode │ │ ├── .DS_Store │ │ ├── Ch16_DotNetCoreEverywhere │ │ ├── .DS_Store │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch16_DotNetCoreEverywhere.csproj │ │ └── Program.cs │ │ ├── Ch16_ImageEditorSite │ │ ├── .DS_Store │ │ ├── .bowerrc │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Ch16_ImageEditorSite.csproj │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── Author.jpg │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ └── banner4.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── Ch16_SharedLibrary │ │ ├── .DS_Store │ │ ├── Ch16_SharedLibrary.csproj │ │ └── Class1.cs └── __MACOSX │ ├── ._Code │ └── Code │ ├── ._.DS_Store │ ├── ._VS2017 │ ├── ._VSCode │ ├── VS2017 │ ├── ._Ch16_DotNetCoreEverywhere │ ├── ._Ch16_ImageEditorSite │ ├── ._Ch16_SharedLibrary │ ├── ._Chapter16.sln │ ├── ._docker-compose.ci.build.yml │ ├── ._docker-compose.dcproj │ ├── ._docker-compose.override.yml │ ├── ._docker-compose.vs.debug.yml │ ├── ._docker-compose.vs.release.yml │ ├── ._docker-compose.yml │ ├── Ch16_DotNetCoreEverywhere │ │ ├── ._Ch16_DotNetCoreEverywhere.csproj │ │ ├── ._Ch16_DotNetCoreEverywhere.csproj.user │ │ ├── ._Program.cs │ │ ├── ._Properties │ │ └── Properties │ │ │ ├── ._PublishProfiles │ │ │ └── PublishProfiles │ │ │ ├── ._FolderProfile.pubxml │ │ │ └── ._FolderProfile.pubxml.user │ ├── Ch16_ImageEditorSite │ │ ├── ._.bowerrc │ │ ├── ._.dockerignore │ │ ├── ._Ch16_ImageEditorSite.csproj │ │ ├── ._Controllers │ │ ├── ._Dockerfile │ │ ├── ._Program.cs │ │ ├── ._Properties │ │ ├── ._Startup.cs │ │ ├── ._Views │ │ ├── ._appsettings.Development.json │ │ ├── ._appsettings.json │ │ ├── ._bower.json │ │ ├── ._bundleconfig.json │ │ ├── ._wwwroot │ │ ├── Controllers │ │ │ └── ._HomeController.cs │ │ ├── Properties │ │ │ └── ._launchSettings.json │ │ ├── Views │ │ │ ├── ._Home │ │ │ ├── ._Shared │ │ │ ├── .__ViewImports.cshtml │ │ │ ├── .__ViewStart.cshtml │ │ │ ├── Home │ │ │ │ ├── ._About.cshtml │ │ │ │ ├── ._Contact.cshtml │ │ │ │ └── ._Index.cshtml │ │ │ └── Shared │ │ │ │ ├── ._Error.cshtml │ │ │ │ ├── .__Layout.cshtml │ │ │ │ └── .__ValidationScriptsPartial.cshtml │ │ └── wwwroot │ │ │ ├── ._css │ │ │ ├── ._favicon.ico │ │ │ ├── ._images │ │ │ ├── ._js │ │ │ ├── ._lib │ │ │ ├── css │ │ │ ├── ._site.css │ │ │ └── ._site.min.css │ │ │ ├── images │ │ │ ├── ._Author.jpg │ │ │ ├── ._banner1.svg │ │ │ ├── ._banner2.svg │ │ │ ├── ._banner3.svg │ │ │ └── ._banner4.svg │ │ │ ├── js │ │ │ ├── ._site.js │ │ │ └── ._site.min.js │ │ │ └── lib │ │ │ ├── ._bootstrap │ │ │ ├── ._jquery │ │ │ ├── ._jquery-validation │ │ │ ├── ._jquery-validation-unobtrusive │ │ │ ├── bootstrap │ │ │ ├── ._.bower.json │ │ │ ├── ._LICENSE │ │ │ ├── ._dist │ │ │ └── dist │ │ │ │ ├── ._css │ │ │ │ ├── ._fonts │ │ │ │ ├── ._js │ │ │ │ ├── css │ │ │ │ ├── ._bootstrap-theme.css │ │ │ │ ├── ._bootstrap-theme.css.map │ │ │ │ ├── ._bootstrap-theme.min.css │ │ │ │ ├── ._bootstrap-theme.min.css.map │ │ │ │ ├── ._bootstrap.css │ │ │ │ ├── ._bootstrap.css.map │ │ │ │ ├── ._bootstrap.min.css │ │ │ │ └── ._bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── ._glyphicons-halflings-regular.eot │ │ │ │ ├── ._glyphicons-halflings-regular.svg │ │ │ │ ├── ._glyphicons-halflings-regular.ttf │ │ │ │ ├── ._glyphicons-halflings-regular.woff │ │ │ │ └── ._glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── ._bootstrap.js │ │ │ │ ├── ._bootstrap.min.js │ │ │ │ └── ._npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── ._.bower.json │ │ │ ├── ._jquery.validate.unobtrusive.js │ │ │ └── ._jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── ._.bower.json │ │ │ ├── ._LICENSE.md │ │ │ ├── ._dist │ │ │ └── dist │ │ │ │ ├── ._additional-methods.js │ │ │ │ ├── ._additional-methods.min.js │ │ │ │ ├── ._jquery.validate.js │ │ │ │ └── ._jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── ._.bower.json │ │ │ ├── ._LICENSE.txt │ │ │ ├── ._dist │ │ │ └── dist │ │ │ ├── ._jquery.js │ │ │ ├── ._jquery.min.js │ │ │ └── ._jquery.min.map │ └── Ch16_SharedLibrary │ │ ├── ._Ch16_SharedLibrary.csproj │ │ └── ._Class1.cs │ └── VSCode │ ├── ._.DS_Store │ ├── ._Ch16_DotNetCoreEverywhere │ ├── ._Ch16_ImageEditorSite │ ├── ._Ch16_SharedLibrary │ ├── Ch16_DotNetCoreEverywhere │ ├── ._.DS_Store │ ├── ._.vscode │ ├── ._Ch16_DotNetCoreEverywhere.csproj │ ├── ._Program.cs │ └── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Ch16_ImageEditorSite │ ├── ._.DS_Store │ ├── ._.bowerrc │ ├── ._.vscode │ ├── ._Ch16_ImageEditorSite.csproj │ ├── ._Controllers │ ├── ._Program.cs │ ├── ._Startup.cs │ ├── ._Views │ ├── ._appsettings.Development.json │ ├── ._appsettings.json │ ├── ._bower.json │ ├── ._bundleconfig.json │ ├── ._wwwroot │ ├── .vscode │ │ ├── ._launch.json │ │ └── ._tasks.json │ ├── Controllers │ │ └── ._HomeController.cs │ ├── Views │ │ ├── ._Home │ │ ├── ._Shared │ │ ├── .__ViewImports.cshtml │ │ ├── .__ViewStart.cshtml │ │ ├── Home │ │ │ ├── ._About.cshtml │ │ │ ├── ._Contact.cshtml │ │ │ └── ._Index.cshtml │ │ └── Shared │ │ │ ├── ._Error.cshtml │ │ │ └── .__Layout.cshtml │ └── wwwroot │ │ ├── ._css │ │ ├── ._favicon.ico │ │ ├── ._images │ │ ├── ._js │ │ ├── ._lib │ │ ├── css │ │ ├── ._site.css │ │ └── ._site.min.css │ │ ├── images │ │ ├── ._Author.jpg │ │ ├── ._banner1.svg │ │ ├── ._banner2.svg │ │ ├── ._banner3.svg │ │ └── ._banner4.svg │ │ ├── js │ │ ├── ._site.js │ │ └── ._site.min.js │ │ └── lib │ │ ├── ._bootstrap │ │ ├── ._jquery │ │ ├── ._jquery-validation │ │ ├── ._jquery-validation-unobtrusive │ │ ├── bootstrap │ │ ├── ._.bower.json │ │ ├── ._LICENSE │ │ ├── ._dist │ │ └── dist │ │ │ ├── ._css │ │ │ ├── ._fonts │ │ │ ├── ._js │ │ │ ├── css │ │ │ ├── ._bootstrap-theme.css │ │ │ ├── ._bootstrap-theme.css.map │ │ │ ├── ._bootstrap-theme.min.css │ │ │ ├── ._bootstrap-theme.min.css.map │ │ │ ├── ._bootstrap.css │ │ │ ├── ._bootstrap.css.map │ │ │ ├── ._bootstrap.min.css │ │ │ └── ._bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── ._glyphicons-halflings-regular.eot │ │ │ ├── ._glyphicons-halflings-regular.svg │ │ │ ├── ._glyphicons-halflings-regular.ttf │ │ │ ├── ._glyphicons-halflings-regular.woff │ │ │ └── ._glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── ._bootstrap.js │ │ │ ├── ._bootstrap.min.js │ │ │ └── ._npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── ._.bower.json │ │ ├── ._jquery.validate.unobtrusive.js │ │ └── ._jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── ._.bower.json │ │ ├── ._LICENSE.md │ │ ├── ._dist │ │ └── dist │ │ │ ├── ._additional-methods.js │ │ │ ├── ._additional-methods.min.js │ │ │ ├── ._jquery.validate.js │ │ │ └── ._jquery.validate.min.js │ │ └── jquery │ │ ├── ._.bower.json │ │ ├── ._LICENSE.txt │ │ ├── ._dist │ │ └── dist │ │ ├── ._jquery.js │ │ ├── ._jquery.min.js │ │ └── ._jquery.min.map │ └── Ch16_SharedLibrary │ ├── ._.DS_Store │ ├── ._Ch16_SharedLibrary.csproj │ └── ._Class1.cs ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/.gitattributes -------------------------------------------------------------------------------- /Chapter01/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Code/VS2017/Ch01_HelloCS/Ch01_HelloCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VS2017/Ch01_HelloCS/Ch01_HelloCS.csproj -------------------------------------------------------------------------------- /Chapter01/Code/VS2017/Ch01_HelloCS/MyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VS2017/Ch01_HelloCS/MyApp.cs -------------------------------------------------------------------------------- /Chapter01/Code/VS2017/Ch01_WelcomeDotNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VS2017/Ch01_WelcomeDotNetCore/Program.cs -------------------------------------------------------------------------------- /Chapter01/Code/VS2017/Chapter01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VS2017/Chapter01.sln -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/Ch01_HelloCS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VSCode/Ch01_HelloCS/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/Ch01_HelloCS/Ch01_HelloCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VSCode/Ch01_HelloCS/Ch01_HelloCS.csproj -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/Ch01_HelloCS/MyApp.cs: -------------------------------------------------------------------------------- 1 | class MyApp { static void Main() { 2 | System.Console.WriteLine("Hello, C#!"); } } -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/Ch01_WelcomeDotNetCore/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VSCode/Ch01_WelcomeDotNetCore/.DS_Store -------------------------------------------------------------------------------- /Chapter01/Code/VSCode/Ch01_WelcomeDotNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/Code/VSCode/Ch01_WelcomeDotNetCore/Program.cs -------------------------------------------------------------------------------- /Chapter01/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VS2017/._Ch01_HelloCS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VS2017/._Ch01_HelloCS -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VS2017/._Ch01_WelcomeDotNetCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VS2017/._Ch01_WelcomeDotNetCore -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VS2017/._Chapter01.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VS2017/._Chapter01.sln -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VS2017/Ch01_HelloCS/._MyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VS2017/Ch01_HelloCS/._MyApp.cs -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VSCode/._Ch01_HelloCS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VSCode/._Ch01_HelloCS -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VSCode/._Ch01_WelcomeDotNetCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VSCode/._Ch01_WelcomeDotNetCore -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VSCode/Ch01_HelloCS/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VSCode/Ch01_HelloCS/._.DS_Store -------------------------------------------------------------------------------- /Chapter01/__MACOSX/Code/VSCode/Ch01_HelloCS/._MyApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter01/__MACOSX/Code/VSCode/Ch01_HelloCS/._MyApp.cs -------------------------------------------------------------------------------- /Chapter02/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Arguments/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Arguments/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Basics/Ch02_Basics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Basics/Ch02_Basics.csproj -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Basics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Basics/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Numbers/Ch02_Numbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Numbers/Ch02_Numbers.csproj -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Numbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Numbers/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Ch02_Variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Ch02_Variables/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VS2017/Chapter02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VS2017/Chapter02.sln -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Arguments/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Arguments/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Arguments/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Arguments/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Basics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Basics/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Basics/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Basics/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Basics/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Basics/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Basics/Ch02_Basics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Basics/Ch02_Basics.csproj -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Basics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Basics/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Numbers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Numbers/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Numbers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Numbers/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Numbers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Numbers/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Numbers/Ch02_Numbers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Numbers/Ch02_Numbers.csproj -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Numbers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Numbers/Program.cs -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Variables/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Variables/.DS_Store -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Variables/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Variables/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Variables/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Variables/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter02/Code/VSCode/Ch02_Variables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/Code/VSCode/Ch02_Variables/Program.cs -------------------------------------------------------------------------------- /Chapter02/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._Ch02_Arguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._Ch02_Arguments -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._Ch02_Basics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._Ch02_Basics -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._Ch02_Numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._Ch02_Numbers -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._Ch02_Variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._Ch02_Variables -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/._Chapter02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/._Chapter02.sln -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/Ch02_Basics/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/Ch02_Basics/._Program.cs -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VS2017/Ch02_Numbers/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VS2017/Ch02_Numbers/._Program.cs -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/._Ch02_Arguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/._Ch02_Arguments -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/._Ch02_Basics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/._Ch02_Basics -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/._Ch02_Numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/._Ch02_Numbers -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/._Ch02_Variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/._Ch02_Variables -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._.DS_Store -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._.vscode -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Basics/._Program.cs -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._.DS_Store -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._.vscode -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Numbers/._Program.cs -------------------------------------------------------------------------------- /Chapter02/__MACOSX/Code/VSCode/Ch02_Variables/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter02/__MACOSX/Code/VSCode/Ch02_Variables/._.vscode -------------------------------------------------------------------------------- /Chapter03/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VS2017/Ch03_CastingConverting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VS2017/Ch03_CastingConverting/Program.cs -------------------------------------------------------------------------------- /Chapter03/Code/VS2017/Ch03_HandlingExceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VS2017/Ch03_HandlingExceptions/Program.cs -------------------------------------------------------------------------------- /Chapter03/Code/VS2017/Chapter03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VS2017/Chapter03.sln -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_CastingConverting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_CastingConverting/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_CastingConverting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_CastingConverting/Program.cs -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_CheckingForOverflow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_CheckingForOverflow/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_HandlingExceptions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_HandlingExceptions/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_HandlingExceptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_HandlingExceptions/Program.cs -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_IterationStatements/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_IterationStatements/.DS_Store -------------------------------------------------------------------------------- /Chapter03/Code/VSCode/Ch03_SelectionStatements/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/Code/VSCode/Ch03_SelectionStatements/.DS_Store -------------------------------------------------------------------------------- /Chapter03/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VS2017/._Ch03_CastingConverting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VS2017/._Ch03_CastingConverting -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VS2017/._Ch03_HandlingExceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VS2017/._Ch03_HandlingExceptions -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VS2017/._Chapter03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VS2017/._Chapter03.sln -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VSCode/._Ch03_CastingConverting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VSCode/._Ch03_CastingConverting -------------------------------------------------------------------------------- /Chapter03/__MACOSX/Code/VSCode/._Ch03_HandlingExceptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter03/__MACOSX/Code/VSCode/._Ch03_HandlingExceptions -------------------------------------------------------------------------------- /Chapter04/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_Assemblies/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_Assemblies/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_Dictionaries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_Dictionaries/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_Lists/Ch04_Lists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_Lists/Ch04_Lists.csproj -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_Lists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_Lists/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_ManipulatingText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_ManipulatingText/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Ch04_RegularExpressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Ch04_RegularExpressions/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VS2017/Chapter04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VS2017/Chapter04.sln -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Assemblies/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Assemblies/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Assemblies/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Assemblies/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Assemblies/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Assemblies/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Dictionaries/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Dictionaries/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Dictionaries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Dictionaries/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Lists/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Lists/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Lists/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Lists/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Lists/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Lists/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Lists/Ch04_Lists.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Lists/Ch04_Lists.csproj -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_Lists/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_Lists/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_ManipulatingText/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_ManipulatingText/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_ManipulatingText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_ManipulatingText/Program.cs -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_RegularExpressions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_RegularExpressions/.DS_Store -------------------------------------------------------------------------------- /Chapter04/Code/VSCode/Ch04_RegularExpressions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/Code/VSCode/Ch04_RegularExpressions/Program.cs -------------------------------------------------------------------------------- /Chapter04/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Ch04_Assemblies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Ch04_Assemblies -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Ch04_Dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Ch04_Dictionaries -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Ch04_Lists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Ch04_Lists -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Ch04_ManipulatingText: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Ch04_ManipulatingText -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Ch04_RegularExpressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Ch04_RegularExpressions -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/._Chapter04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/._Chapter04.sln -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VS2017/Ch04_Lists/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VS2017/Ch04_Lists/._Program.cs -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._Ch04_Assemblies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._Ch04_Assemblies -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._Ch04_Dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._Ch04_Dictionaries -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._Ch04_Lists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._Ch04_Lists -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._Ch04_ManipulatingText: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._Ch04_ManipulatingText -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/._Ch04_RegularExpressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/._Ch04_RegularExpressions -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/Ch04_Assemblies/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/Ch04_Assemblies/._.vscode -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._.DS_Store -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._.vscode -------------------------------------------------------------------------------- /Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter04/__MACOSX/Code/VSCode/Ch04_Lists/._Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VS2017/Ch05_Calculator/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VS2017/Ch05_Calculator/Calculator.cs -------------------------------------------------------------------------------- /Chapter05/Code/VS2017/Ch05_Debugging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VS2017/Ch05_Debugging/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/VS2017/Ch05_Monitoring/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VS2017/Ch05_Monitoring/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/VS2017/Chapter05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VS2017/Chapter05.sln -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Calculator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Calculator/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Calculator/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Calculator/Calculator.cs -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_CalculatorUnitTests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_CalculatorUnitTests/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Debugging/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Debugging/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Debugging/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Debugging/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Debugging/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Debugging/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Debugging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Debugging/Program.cs -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Monitoring/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Monitoring/.DS_Store -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Monitoring/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Monitoring/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter05/Code/VSCode/Ch05_Monitoring/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/Code/VSCode/Ch05_Monitoring/Program.cs -------------------------------------------------------------------------------- /Chapter05/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VS2017/._Ch05_Calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VS2017/._Ch05_Calculator -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VS2017/._Ch05_Debugging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VS2017/._Ch05_Debugging -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VS2017/._Ch05_Monitoring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VS2017/._Ch05_Monitoring -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VS2017/._Chapter05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VS2017/._Chapter05.sln -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/._Ch05_Calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/._Ch05_Calculator -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/._Ch05_Debugging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/._Ch05_Debugging -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/._Ch05_Monitoring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/._Ch05_Monitoring -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/Ch05_Debugging/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/Ch05_Debugging/._.vscode -------------------------------------------------------------------------------- /Chapter05/__MACOSX/Code/VSCode/Ch05_Monitoring/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter05/__MACOSX/Code/VSCode/Ch05_Monitoring/._.vscode -------------------------------------------------------------------------------- /Chapter06/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/Ch06_PacktLibrary/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/Ch06_PacktLibrary/BankAccount.cs -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/Ch06_PacktLibrary/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/Ch06_PacktLibrary/Person.cs -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/Ch06_PacktLibrary/Person2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/Ch06_PacktLibrary/Person2.cs -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/Ch06_PeopleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/Ch06_PeopleApp/Program.cs -------------------------------------------------------------------------------- /Chapter06/Code/VS2017/Chapter06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VS2017/Chapter06.sln -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PacktLibrary/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PacktLibrary/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PacktLibrary/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PacktLibrary/BankAccount.cs -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PacktLibrary/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PacktLibrary/Person.cs -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PacktLibrary/Person2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PacktLibrary/Person2.cs -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PeopleApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PeopleApp/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PeopleApp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PeopleApp/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PeopleApp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PeopleApp/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter06/Code/VSCode/Ch06_PeopleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/Code/VSCode/Ch06_PeopleApp/Program.cs -------------------------------------------------------------------------------- /Chapter06/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VS2017/._Ch06_PacktLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VS2017/._Ch06_PacktLibrary -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VS2017/._Ch06_PeopleApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VS2017/._Ch06_PeopleApp -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VS2017/._Chapter06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VS2017/._Chapter06.sln -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VSCode/._Ch06_PacktLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VSCode/._Ch06_PacktLibrary -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VSCode/._Ch06_PeopleApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VSCode/._Ch06_PeopleApp -------------------------------------------------------------------------------- /Chapter06/__MACOSX/Code/VSCode/Ch06_PeopleApp/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter06/__MACOSX/Code/VSCode/Ch06_PeopleApp/._.vscode -------------------------------------------------------------------------------- /Chapter07/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/Ch07_PacktLibrary/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/Ch07_PacktLibrary/Employee.cs -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/Ch07_PacktLibrary/MyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/Ch07_PacktLibrary/MyExtensions.cs -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/Ch07_PacktLibrary/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/Ch07_PacktLibrary/Person.cs -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/Ch07_PeopleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/Ch07_PeopleApp/Program.cs -------------------------------------------------------------------------------- /Chapter07/Code/VS2017/Chapter07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VS2017/Chapter07.sln -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PacktLibrary/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PacktLibrary/.DS_Store -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PacktLibrary/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PacktLibrary/Employee.cs -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PacktLibrary/MyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PacktLibrary/MyExtensions.cs -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PacktLibrary/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PacktLibrary/Person.cs -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PeopleApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PeopleApp/.DS_Store -------------------------------------------------------------------------------- /Chapter07/Code/VSCode/Ch07_PeopleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/Code/VSCode/Ch07_PeopleApp/Program.cs -------------------------------------------------------------------------------- /Chapter07/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VS2017/._Ch07_PacktLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VS2017/._Ch07_PacktLibrary -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VS2017/._Ch07_PeopleApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VS2017/._Ch07_PeopleApp -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VS2017/._Chapter07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VS2017/._Chapter07.sln -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VSCode/._Ch07_PacktLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VSCode/._Ch07_PacktLibrary -------------------------------------------------------------------------------- /Chapter07/__MACOSX/Code/VSCode/._Ch07_PeopleApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter07/__MACOSX/Code/VSCode/._Ch07_PeopleApp -------------------------------------------------------------------------------- /Chapter08/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/Category.cs -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/Ch08_EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/Ch08_EFCore.csproj -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/ConsoleLogger.cs -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/Northwind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/Northwind.cs -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/Product.cs -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Ch08_EFCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Ch08_EFCore/Program.cs -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Chapter08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Chapter08.sln -------------------------------------------------------------------------------- /Chapter08/Code/VS2017/Northwind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VS2017/Northwind.sql -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/.DS_Store -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/Category.cs -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/Ch08_EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/Ch08_EFCore.csproj -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/ConsoleLogger.cs -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/Northwind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/Northwind.cs -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/Product.cs -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Ch08_EFCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Ch08_EFCore/Program.cs -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/Northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/Northwind.db -------------------------------------------------------------------------------- /Chapter08/Code/VSCode/NorthwindSQLite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/Code/VSCode/NorthwindSQLite.sql -------------------------------------------------------------------------------- /Chapter08/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/._Ch08_EFCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/._Ch08_EFCore -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/._Chapter08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/._Chapter08.sln -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/._Northwind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/._Northwind.sql -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Category.cs -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Product.cs -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VS2017/Ch08_EFCore/._Program.cs -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/._Ch08_EFCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/._Ch08_EFCore -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/._Northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/._Northwind.db -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/._NorthwindSQLite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/._NorthwindSQLite.sql -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._.DS_Store -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._.vscode -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Category.cs -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Product.cs -------------------------------------------------------------------------------- /Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter08/__MACOSX/Code/VSCode/Ch08_EFCore/._Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_LinqToObjects/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_LinqToObjects/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_PLINQ/Ch09_PLINQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_PLINQ/Ch09_PLINQ.csproj -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_PLINQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_PLINQ/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Projection/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Projection/Category.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Projection/Northwind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Projection/Northwind.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Projection/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Projection/Product.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Projection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Projection/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Projection/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Projection/settings.xml -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Sets/Ch09_Sets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Sets/Ch09_Sets.csproj -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Ch09_Sets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Ch09_Sets/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VS2017/Chapter09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VS2017/Chapter09.sln -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_LinqToObjects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_LinqToObjects/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_LinqToObjects/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_LinqToObjects/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_PLINQ/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_PLINQ/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_PLINQ/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_PLINQ/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_PLINQ/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_PLINQ/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_PLINQ/Ch09_PLINQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_PLINQ/Ch09_PLINQ.csproj -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_PLINQ/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_PLINQ/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/Category.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/Northwind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/Northwind.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/Northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/Northwind.db -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/Product.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Projection/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Projection/settings.xml -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Sets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Sets/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Sets/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Sets/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Sets/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Sets/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Sets/Ch09_Sets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Sets/Ch09_Sets.csproj -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Ch09_Sets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/Code/VSCode/Ch09_Sets/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/VSCode/Northwind.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._Ch09_LinqToObjects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._Ch09_LinqToObjects -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._Ch09_PLINQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._Ch09_PLINQ -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._Ch09_Projection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._Ch09_Projection -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._Ch09_Sets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._Ch09_Sets -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/._Chapter09.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/._Chapter09.sln -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/Ch09_PLINQ/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/Ch09_PLINQ/._Program.cs -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VS2017/Ch09_Sets/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VS2017/Ch09_Sets/._Program.cs -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._Ch09_LinqToObjects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._Ch09_LinqToObjects -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._Ch09_PLINQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._Ch09_PLINQ -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._Ch09_Projection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._Ch09_Projection -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._Ch09_Sets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._Ch09_Sets -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/._Northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/._Northwind.db -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._.DS_Store -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._.vscode -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_PLINQ/._Program.cs -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_Projection/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_Projection/._.vscode -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._.DS_Store -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._.vscode -------------------------------------------------------------------------------- /Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter09/__MACOSX/Code/VSCode/Ch09_Sets/._Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Encoding/Ch10_Encoding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Encoding/Ch10_Encoding.csproj -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Encoding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Encoding/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_FileSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_FileSystem/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Serialization/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Serialization/Person.cs -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Serialization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Serialization/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Streams/Ch10_Streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Streams/Ch10_Streams.csproj -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Ch10_Streams/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Ch10_Streams/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VS2017/Chapter10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VS2017/Chapter10.sln -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Encoding/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Encoding/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Encoding/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Encoding/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Encoding/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Encoding/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Encoding/Ch10_Encoding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Encoding/Ch10_Encoding.csproj -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Encoding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Encoding/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_FileSystem/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_FileSystem/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_FileSystem/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_FileSystem/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_FileSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_FileSystem/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Serialization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Serialization/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Serialization/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Serialization/Person.cs -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Serialization/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Serialization/Program.cs -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Streams/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Streams/.DS_Store -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Streams/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Streams/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Streams/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Streams/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Streams/Ch10_Streams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Streams/Ch10_Streams.csproj -------------------------------------------------------------------------------- /Chapter10/Code/VSCode/Ch10_Streams/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/Code/VSCode/Ch10_Streams/Program.cs -------------------------------------------------------------------------------- /Chapter10/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._Ch10_Encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._Ch10_Encoding -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._Ch10_FileSystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._Ch10_FileSystem -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._Ch10_Serialization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._Ch10_Serialization -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._Ch10_Streams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._Ch10_Streams -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/._Chapter10.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/._Chapter10.sln -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VS2017/Ch10_Streams/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VS2017/Ch10_Streams/._Program.cs -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/._Ch10_Encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/._Ch10_Encoding -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/._Ch10_FileSystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/._Ch10_FileSystem -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/._Ch10_Serialization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/._Ch10_Serialization -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/._Ch10_Streams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/._Ch10_Streams -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_Encoding/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_Encoding/._.DS_Store -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_Encoding/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_Encoding/._.vscode -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_FileSystem/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_FileSystem/._.vscode -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._.DS_Store -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._.vscode -------------------------------------------------------------------------------- /Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter10/__MACOSX/Code/VSCode/Ch10_Streams/._Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Ch11_CryptographyLib/Protector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Ch11_CryptographyLib/Protector.cs -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Ch11_CryptographyLib/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Ch11_CryptographyLib/User.cs -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Ch11_EncryptionApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Ch11_EncryptionApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Ch11_HashingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Ch11_HashingApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Ch11_SigningApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Ch11_SigningApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/VS2017/Chapter11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VS2017/Chapter11.sln -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_CryptographyLib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_CryptographyLib/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_CryptographyLib/Protector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_CryptographyLib/Protector.cs -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_CryptographyLib/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_CryptographyLib/User.cs -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_EncryptionApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_EncryptionApp/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_EncryptionApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_EncryptionApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_HashingApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_HashingApp/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_HashingApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_HashingApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_SigningApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_SigningApp/.DS_Store -------------------------------------------------------------------------------- /Chapter11/Code/VSCode/Ch11_SigningApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/Code/VSCode/Ch11_SigningApp/Program.cs -------------------------------------------------------------------------------- /Chapter11/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VS2017/._Ch11_CryptographyLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VS2017/._Ch11_CryptographyLib -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VS2017/._Ch11_EncryptionApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VS2017/._Ch11_EncryptionApp -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VS2017/._Ch11_HashingApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VS2017/._Ch11_HashingApp -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VS2017/._Ch11_SigningApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VS2017/._Ch11_SigningApp -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VS2017/._Chapter11.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VS2017/._Chapter11.sln -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VSCode/._Ch11_CryptographyLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VSCode/._Ch11_CryptographyLib -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VSCode/._Ch11_EncryptionApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VSCode/._Ch11_EncryptionApp -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VSCode/._Ch11_HashingApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VSCode/._Ch11_HashingApp -------------------------------------------------------------------------------- /Chapter11/__MACOSX/Code/VSCode/._Ch11_SigningApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter11/__MACOSX/Code/VSCode/._Ch11_SigningApp -------------------------------------------------------------------------------- /Chapter12/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/App.config -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/App.xaml -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/App.xaml.cs -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/Ch12_GUITasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/Ch12_GUITasks.csproj -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_GUITasks/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_GUITasks/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_LockAndMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_LockAndMonitor/Program.cs -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_Tasks/Ch12_Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_Tasks/Ch12_Tasks.csproj -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Ch12_Tasks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Ch12_Tasks/Program.cs -------------------------------------------------------------------------------- /Chapter12/Code/VS2017/Chapter12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VS2017/Chapter12.sln -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_LockAndMonitor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_LockAndMonitor/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_LockAndMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_LockAndMonitor/Program.cs -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_NestedAndChildTasks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_NestedAndChildTasks/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_Tasks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_Tasks/.DS_Store -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_Tasks/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_Tasks/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_Tasks/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_Tasks/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_Tasks/Ch12_Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_Tasks/Ch12_Tasks.csproj -------------------------------------------------------------------------------- /Chapter12/Code/VSCode/Ch12_Tasks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/Code/VSCode/Ch12_Tasks/Program.cs -------------------------------------------------------------------------------- /Chapter12/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/._.DS_Store -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/._Ch12_GUITasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/._Ch12_GUITasks -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/._Ch12_LockAndMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/._Ch12_LockAndMonitor -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/._Ch12_Tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/._Ch12_Tasks -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/._Chapter12.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/._Chapter12.sln -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/Ch12_GUITasks/._App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/Ch12_GUITasks/._App.xaml -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VS2017/Ch12_Tasks/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VS2017/Ch12_Tasks/._Program.cs -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/._Ch12_LockAndMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/._Ch12_LockAndMonitor -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/._Ch12_Tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/._Ch12_Tasks -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._.DS_Store -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._.vscode -------------------------------------------------------------------------------- /Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter12/__MACOSX/Code/VSCode/Ch12_Tasks/._Program.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/App.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/project.json -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_BouncingBall/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_BouncingBall/project.lock.json -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/App.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/Ch13_DataBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/Ch13_DataBinding.csproj -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/Models/Employee.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/project.json -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_DataBinding/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_DataBinding/project.lock.json -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/App.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Ch13_UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Ch13_UWP.csproj -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Ch13_UWP_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Ch13_UWP_TemporaryKey.pfx -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/project.json -------------------------------------------------------------------------------- /Chapter13/Code/Ch13_UWP/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Ch13_UWP/project.lock.json -------------------------------------------------------------------------------- /Chapter13/Code/Chapter13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/Code/Chapter13.sln -------------------------------------------------------------------------------- /Chapter13/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/._Ch13_BouncingBall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/._Ch13_BouncingBall -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/._Ch13_DataBinding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/._Ch13_DataBinding -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/._Ch13_UWP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/._Ch13_UWP -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/._Chapter13.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/._Chapter13.sln -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_BouncingBall/._App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_BouncingBall/._App.xaml -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_BouncingBall/._App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_BouncingBall/._App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_BouncingBall/._Assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_BouncingBall/._Assets -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_BouncingBall/._Properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_BouncingBall/._Properties -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_BouncingBall/._project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_BouncingBall/._project.json -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._App.xaml -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._Assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._Assets -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._Models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._Models -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._Properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._Properties -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_DataBinding/._project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_DataBinding/._project.json -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._App.xaml -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._App.xaml.cs -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._Assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._Assets -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._Ch13_UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._Ch13_UWP.csproj -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._MainPage.xaml -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._Package.appxmanifest -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._Properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._Properties -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._project.json -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/._project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/._project.lock.json -------------------------------------------------------------------------------- /Chapter13/__MACOSX/Code/Ch13_UWP/Assets/._StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter13/__MACOSX/Code/Ch13_UWP/Assets/._StoreLogo.png -------------------------------------------------------------------------------- /Chapter14/Code files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter14/Code files.html -------------------------------------------------------------------------------- /Chapter14/Code files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter14/Code files.zip -------------------------------------------------------------------------------- /Chapter15/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/.DS_Store -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/App.xaml -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Ch15_MobileApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Ch15_MobileApp.csproj -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Ch15_MobileAppPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Ch15_MobileAppPage.xaml -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Ch15_MobileAppPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Ch15_MobileAppPage.xaml.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/IDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/IDialer.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Models/Customer.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Views/CustomerDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Views/CustomerDetails.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Views/CustomerDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Views/CustomerDetails.xaml -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Views/CustomerList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Views/CustomerList.xaml -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/Views/CustomerList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/Views/CustomerList.xaml.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_MobileApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_MobileApp/packages.config -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/.DS_Store -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Ch15_WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Ch15_WebApi.csproj -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Models/Customer.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Models/CustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Models/CustomerRepository.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Models/ICustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Models/ICustomerRepository.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Models/Northwind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Models/Northwind.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Program.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/Startup.cs -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter15/Code/Ch15_WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Ch15_WebApi/appsettings.json -------------------------------------------------------------------------------- /Chapter15/Code/Chapter15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Chapter15.sln -------------------------------------------------------------------------------- /Chapter15/Code/Chapter15.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Chapter15.userprefs -------------------------------------------------------------------------------- /Chapter15/Code/Droid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/.DS_Store -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Ch15_MobileApp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Ch15_MobileApp.Droid.csproj -------------------------------------------------------------------------------- /Chapter15/Code/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Chapter15/Code/Droid/PhoneDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/PhoneDialer.cs -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Chapter15/Code/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter15/Code/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/Droid/packages.config -------------------------------------------------------------------------------- /Chapter15/Code/iOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/.DS_Store -------------------------------------------------------------------------------- /Chapter15/Code/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter15/Code/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chapter15/Code/iOS/Ch15_MobileApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/Ch15_MobileApp.iOS.csproj -------------------------------------------------------------------------------- /Chapter15/Code/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter15/Code/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/Info.plist -------------------------------------------------------------------------------- /Chapter15/Code/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter15/Code/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/Main.cs -------------------------------------------------------------------------------- /Chapter15/Code/iOS/PhoneDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/PhoneDialer.cs -------------------------------------------------------------------------------- /Chapter15/Code/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/Code/iOS/packages.config -------------------------------------------------------------------------------- /Chapter15/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._Ch15_MobileApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._Ch15_MobileApp -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._Ch15_WebApi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._Ch15_WebApi -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._Chapter15.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._Chapter15.sln -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._Chapter15.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._Chapter15.userprefs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._Droid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._Droid -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/._iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/._iOS -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._.DS_Store -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._App.xaml -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._App.xaml.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._IDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._IDialer.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._Models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._Models -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._Properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._Properties -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._Views: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._Views -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_MobileApp/._packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_MobileApp/._packages.config -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._.DS_Store -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._.vscode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._.vscode -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._Ch15_WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._Ch15_WebApi.csproj -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._Controllers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._Controllers -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._Models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._Models -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._Program.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._Startup.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._appsettings.json -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/._wwwroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/._wwwroot -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/.vscode/._tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/.vscode/._tasks.json -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Ch15_WebApi/Models/._Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Ch15_WebApi/Models/._Customer.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._.DS_Store -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._Assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._Assets -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._MainActivity.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._PhoneDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._PhoneDialer.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._Properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._Properties -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._Resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._Resources -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/._packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/._packages.config -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/Resources/._drawable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/Resources/._drawable -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/Resources/._layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/Resources/._layout -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/Droid/Resources/._values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/Droid/Resources/._values -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._.DS_Store -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._AppDelegate.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._Assets.xcassets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._Assets.xcassets -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._Entitlements.plist -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._Info.plist -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._Main.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._PhoneDialer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._PhoneDialer.cs -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._Resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._Resources -------------------------------------------------------------------------------- /Chapter15/__MACOSX/Code/iOS/._packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter15/__MACOSX/Code/iOS/._packages.config -------------------------------------------------------------------------------- /Chapter16/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/.DS_Store -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Ch16_ImageEditorSite/Dockerfile -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Ch16_ImageEditorSite/Program.cs -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Ch16_ImageEditorSite/Startup.cs -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Ch16_ImageEditorSite/bower.json -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_ImageEditorSite/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Ch16_SharedLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Ch16_SharedLibrary/Class1.cs -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/Chapter16.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/Chapter16.sln -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.ci.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.ci.build.yml -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.dcproj -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.override.yml -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.vs.debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.vs.debug.yml -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.vs.release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.vs.release.yml -------------------------------------------------------------------------------- /Chapter16/Code/VS2017/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VS2017/docker-compose.yml -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/.DS_Store -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_ImageEditorSite/.DS_Store -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_ImageEditorSite/Program.cs -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_ImageEditorSite/Startup.cs -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_ImageEditorSite/bower.json -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_ImageEditorSite/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_SharedLibrary/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_SharedLibrary/.DS_Store -------------------------------------------------------------------------------- /Chapter16/Code/VSCode/Ch16_SharedLibrary/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/Code/VSCode/Ch16_SharedLibrary/Class1.cs -------------------------------------------------------------------------------- /Chapter16/__MACOSX/._Code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/._Code -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/._.DS_Store -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/._VS2017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/._VS2017 -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/._VSCode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/._VSCode -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VS2017/._Ch16_ImageEditorSite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VS2017/._Ch16_ImageEditorSite -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VS2017/._Ch16_SharedLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VS2017/._Ch16_SharedLibrary -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VS2017/._Chapter16.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VS2017/._Chapter16.sln -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VS2017/._docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VS2017/._docker-compose.yml -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VSCode/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VSCode/._.DS_Store -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VSCode/._Ch16_ImageEditorSite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VSCode/._Ch16_ImageEditorSite -------------------------------------------------------------------------------- /Chapter16/__MACOSX/Code/VSCode/._Ch16_SharedLibrary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/Chapter16/__MACOSX/Code/VSCode/._Ch16_SharedLibrary -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/CSharp-7-And-NET-Core-Modern-CrossPlatform-Development-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------