├── Chapter02 ├── Demo.WPF.Converters │ ├── 09. Demo.WPF.Converters.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── BoolToColorConverter.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.DataBinding │ ├── 08. Demo.WPF.DataBinding.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.DataTrigger │ ├── 12. Demo.WPF.DataTrigger.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.EventTrigger │ ├── 14. Demo.WPF.EventTrigger.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.FirstApp │ ├── 01. Demo.WPF.FirstApp.csproj │ ├── 01. Demo.WPF.FirstApp.csproj.user │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Demo.WPF.FirstApp.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.MultiDataTrigger │ ├── 13. Demo.WPF.MultiDataTrigger.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.MultiTrigger │ ├── 11. Demo.WPF.MultiTrigger.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.Canvas │ ├── 04. Demo.WPF.Panel.Canvas.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.DockPanel │ ├── 05. Demo.WPF.Panel.DockPanel.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.Grid │ ├── 02. Demo.WPF.Panel.Grid.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.StackPanel │ ├── 03. Demo.WPF.Panel.StackPanel.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.UniformGrid │ ├── 07. Demo.WPF.Panel.UniformGrid.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.Panel.WrapPanel │ ├── 06. Demo.WPF.Panel.WrapPanel.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Demo.WPF.PropertyTrigger │ ├── 10. Demo.WPF.PropertyTrigger.csproj │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── Windows Presentation Foundation.sln ├── Chapter03 ├── MyDemoWebApp.sln ├── MyDemoWebApp │ ├── About.aspx │ ├── About.aspx.cs │ ├── About.aspx.designer.cs │ ├── App_Start │ │ ├── BundleConfig.cs │ │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Bundle.config │ ├── Contact.aspx │ ├── Contact.aspx.cs │ ├── Contact.aspx.designer.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── MyDemoWebApp.csproj │ ├── MyDemoWebApp.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── WebForms │ │ │ ├── DetailsView.js │ │ │ ├── Focus.js │ │ │ ├── GridView.js │ │ │ ├── MSAjax │ │ │ │ ├── MicrosoftAjax.js │ │ │ │ ├── MicrosoftAjaxApplicationServices.js │ │ │ │ ├── MicrosoftAjaxComponentModel.js │ │ │ │ ├── MicrosoftAjaxCore.js │ │ │ │ ├── MicrosoftAjaxGlobalization.js │ │ │ │ ├── MicrosoftAjaxHistory.js │ │ │ │ ├── MicrosoftAjaxNetwork.js │ │ │ │ ├── MicrosoftAjaxSerialization.js │ │ │ │ ├── MicrosoftAjaxTimer.js │ │ │ │ ├── MicrosoftAjaxWebForms.js │ │ │ │ └── MicrosoftAjaxWebServices.js │ │ │ ├── Menu.js │ │ │ ├── MenuStandards.js │ │ │ ├── SmartNav.js │ │ │ ├── TreeView.js │ │ │ ├── WebForms.js │ │ │ ├── WebParts.js │ │ │ └── WebUIValidation.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── Site.Master │ ├── Site.Master.cs │ ├── Site.Master.designer.cs │ ├── Site.Mobile.Master │ ├── Site.Mobile.Master.cs │ ├── Site.Mobile.Master.designer.cs │ ├── ViewSwitcher.ascx │ ├── ViewSwitcher.ascx.cs │ ├── ViewSwitcher.ascx.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── packages.config └── MyWPFDemoApp │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MyWPFDemoApp.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TodoItem.cs │ └── packages.config ├── Chapter04 ├── DotnetCore Demo │ ├── ConsoleApp │ │ ├── ConsoleApp.csproj │ │ ├── ConsoleApp.csproj.user │ │ ├── Program.cs │ │ └── Properties │ │ │ └── PublishProfiles │ │ │ ├── FolderProfile.pubxml │ │ │ └── FolderProfile.pubxml.user │ └── DotnetCore Demo.sln └── Web Application Demo │ ├── Web Application Demo.sln │ └── WebApplication │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ ├── DotnetCoreWebAppDemo - Web Deploy.pubxml │ │ └── DotnetCoreWebAppDemo - Web Deploy.pubxml.user │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _CookieConsentPartial.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── WebApplication.csproj │ ├── WebApplication.csproj.user │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ └── banner3.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Chapter05 ├── Classes │ ├── 01_SimpleClass.ts │ ├── 02_ParameterizedConstructor.ts │ ├── 03_ClassInstantiation.ts │ ├── 04_AbstractClass.ts │ └── 05_Inheritance.ts ├── DataTypes │ ├── Any.ts │ ├── Array-01.ts │ ├── Array-02.ts │ ├── Boolean.ts │ ├── Enum-01.ts │ ├── Enum-02.ts │ ├── Enum-03.ts │ ├── Never.ts │ ├── Null.ts │ ├── Number.ts │ ├── String.ts │ ├── Tuple.ts │ ├── Undefined.ts │ ├── Void-01.ts │ └── Void-02.ts ├── HelloTypeScript.ts ├── Interfaces │ └── 01_SimpleInterface.ts └── Variables │ ├── Variable-01.ts │ ├── Variable-02.ts │ ├── Variable-03.ts │ ├── Variable-04.ts │ └── Variable-05.ts ├── Chapter08 ├── ClassLibrary │ ├── ClassLibrary.csproj │ ├── Person.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── ClassLibrary.dll │ │ │ └── ClassLibrary.pdb │ └── obj │ │ └── Debug │ │ ├── ClassLibrary.csproj.CoreCompileInputs.cache │ │ ├── ClassLibrary.csproj.FileListAbsolute.txt │ │ ├── ClassLibrary.csprojAssemblyReference.cache │ │ ├── ClassLibrary.dll │ │ ├── ClassLibrary.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── Live Unit Testing Demo.sln ├── TestClassLibrary │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestClassLibrary.csproj │ ├── UnitTest1.cs │ ├── bin │ │ └── Debug │ │ │ ├── ClassLibrary.dll │ │ │ ├── ClassLibrary.pdb │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ │ │ ├── TestClassLibrary.dll │ │ │ └── TestClassLibrary.pdb │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TestClassLibrary.csproj.CopyComplete │ │ │ ├── TestClassLibrary.csproj.CoreCompileInputs.cache │ │ │ ├── TestClassLibrary.csproj.FileListAbsolute.txt │ │ │ ├── TestClassLibrary.csprojAssemblyReference.cache │ │ │ ├── TestClassLibrary.dll │ │ │ └── TestClassLibrary.pdb │ └── packages.config └── packages │ ├── MSTest.TestAdapter.1.3.2 │ ├── .signature.p7s │ └── MSTest.TestAdapter.1.3.2.nupkg │ └── MSTest.TestFramework.1.3.2 │ ├── .signature.p7s │ └── MSTest.TestFramework.1.3.2.nupkg ├── LICENSE └── README.md /Chapter02/Demo.WPF.Converters/09. Demo.WPF.Converters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/09. Demo.WPF.Converters.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/BoolToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/BoolToColorConverter.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Converters/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Converters/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/08. Demo.WPF.DataBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/08. Demo.WPF.DataBinding.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataBinding/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/12. Demo.WPF.DataTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/12. Demo.WPF.DataTrigger.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.DataTrigger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.DataTrigger/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/14. Demo.WPF.EventTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/14. Demo.WPF.EventTrigger.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.EventTrigger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.EventTrigger/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/01. Demo.WPF.FirstApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/01. Demo.WPF.FirstApp.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/01. Demo.WPF.FirstApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/01. Demo.WPF.FirstApp.csproj.user -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Demo.WPF.FirstApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Demo.WPF.FirstApp.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.FirstApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.FirstApp/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/13. Demo.WPF.MultiDataTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/13. Demo.WPF.MultiDataTrigger.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiDataTrigger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiDataTrigger/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/11. Demo.WPF.MultiTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/11. Demo.WPF.MultiTrigger.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.MultiTrigger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.MultiTrigger/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/04. Demo.WPF.Panel.Canvas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/04. Demo.WPF.Panel.Canvas.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Canvas/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Canvas/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/05. Demo.WPF.Panel.DockPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/05. Demo.WPF.Panel.DockPanel.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.DockPanel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.DockPanel/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/02. Demo.WPF.Panel.Grid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/02. Demo.WPF.Panel.Grid.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.Grid/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.Grid/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/03. Demo.WPF.Panel.StackPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/03. Demo.WPF.Panel.StackPanel.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.StackPanel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.StackPanel/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/07. Demo.WPF.Panel.UniformGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/07. Demo.WPF.Panel.UniformGrid.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.UniformGrid/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/06. Demo.WPF.Panel.WrapPanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/06. Demo.WPF.Panel.WrapPanel.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.Panel.WrapPanel/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/10. Demo.WPF.PropertyTrigger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/10. Demo.WPF.PropertyTrigger.csproj -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/App.config -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/App.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/App.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter02/Demo.WPF.PropertyTrigger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Demo.WPF.PropertyTrigger/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter02/Windows Presentation Foundation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter02/Windows Presentation Foundation.sln -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp.sln -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/About.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/About.aspx -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/About.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/About.aspx.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/About.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/About.aspx.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/ApplicationInsights.config -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Bundle.config -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Contact.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Contact.aspx -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Contact.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Contact.aspx.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Contact.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Contact.aspx.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Content/Site.css -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Content/bootstrap.css -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Default.aspx -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Default.aspx.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Global.asax -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Global.asax.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/MyDemoWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/MyDemoWebApp.csproj -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/MyDemoWebApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/MyDemoWebApp.csproj.user -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/respond.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Master -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Master.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Master.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Mobile.Master -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/ViewSwitcher.ascx -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Web.Debug.config -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Web.Release.config -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/Web.config -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/favicon.ico -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter03/MyDemoWebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyDemoWebApp/packages.config -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/App.config -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/App.xaml -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/App.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/MainWindow.xaml -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/MyWPFDemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/MyWPFDemoApp.csproj -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/Properties/Resources.resx -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/Properties/Settings.settings -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/TodoItem.cs -------------------------------------------------------------------------------- /Chapter03/MyWPFDemoApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter03/MyWPFDemoApp/packages.config -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/ConsoleApp/ConsoleApp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/ConsoleApp/ConsoleApp.csproj.user -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/ConsoleApp/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/ConsoleApp/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/ConsoleApp/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/ConsoleApp/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /Chapter04/DotnetCore Demo/DotnetCore Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/DotnetCore Demo/DotnetCore Demo.sln -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/Web Application Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/Web Application Demo.sln -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Program.cs -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Properties/PublishProfiles/DotnetCoreWebAppDemo - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Properties/PublishProfiles/DotnetCoreWebAppDemo - Web Deploy.pubxml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Properties/PublishProfiles/DotnetCoreWebAppDemo - Web Deploy.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Properties/PublishProfiles/DotnetCoreWebAppDemo - Web Deploy.pubxml.user -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Startup.cs -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/WebApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/WebApplication.csproj -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/WebApplication.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/WebApplication.csproj.user -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/appsettings.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/css/site.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/js/site.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter04/Web Application Demo/WebApplication/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Chapter05/Classes/01_SimpleClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Classes/01_SimpleClass.ts -------------------------------------------------------------------------------- /Chapter05/Classes/02_ParameterizedConstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Classes/02_ParameterizedConstructor.ts -------------------------------------------------------------------------------- /Chapter05/Classes/03_ClassInstantiation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Classes/03_ClassInstantiation.ts -------------------------------------------------------------------------------- /Chapter05/Classes/04_AbstractClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Classes/04_AbstractClass.ts -------------------------------------------------------------------------------- /Chapter05/Classes/05_Inheritance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Classes/05_Inheritance.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Any.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Array-01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Array-01.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Array-02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Array-02.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Boolean.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Enum-01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Enum-01.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Enum-02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Enum-02.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Enum-03.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Enum-03.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Never.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Never.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Null.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Number.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/String.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/String.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Tuple.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Undefined.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/DataTypes/Undefined.ts -------------------------------------------------------------------------------- /Chapter05/DataTypes/Void-01.ts: -------------------------------------------------------------------------------- 1 | let stability: void = undefined; -------------------------------------------------------------------------------- /Chapter05/DataTypes/Void-02.ts: -------------------------------------------------------------------------------- 1 | let stability: void = null; -------------------------------------------------------------------------------- /Chapter05/HelloTypeScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/HelloTypeScript.ts -------------------------------------------------------------------------------- /Chapter05/Interfaces/01_SimpleInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Interfaces/01_SimpleInterface.ts -------------------------------------------------------------------------------- /Chapter05/Variables/Variable-01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Variables/Variable-01.ts -------------------------------------------------------------------------------- /Chapter05/Variables/Variable-02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Variables/Variable-02.ts -------------------------------------------------------------------------------- /Chapter05/Variables/Variable-03.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Variables/Variable-03.ts -------------------------------------------------------------------------------- /Chapter05/Variables/Variable-04.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Variables/Variable-04.ts -------------------------------------------------------------------------------- /Chapter05/Variables/Variable-05.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter05/Variables/Variable-05.ts -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/ClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/ClassLibrary.csproj -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/Person.cs -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/bin/Debug/ClassLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/bin/Debug/ClassLibrary.dll -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/bin/Debug/ClassLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/bin/Debug/ClassLibrary.pdb -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/ClassLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/ClassLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/ClassLibrary.dll -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/ClassLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/ClassLibrary.pdb -------------------------------------------------------------------------------- /Chapter08/ClassLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/ClassLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter08/Live Unit Testing Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/Live Unit Testing Demo.sln -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/TestClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/TestClassLibrary.csproj -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/UnitTest1.cs -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/ClassLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/ClassLibrary.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/ClassLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/ClassLibrary.pdb -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/Microsoft.VisualStudio.TestPlatform.TestFramework.xml -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/TestClassLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/TestClassLibrary.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/bin/Debug/TestClassLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/bin/Debug/TestClassLibrary.pdb -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2bebc47b2f319c7d3bab179c03c5d7d99282ce0a 2 | -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.dll -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/obj/Debug/TestClassLibrary.pdb -------------------------------------------------------------------------------- /Chapter08/TestClassLibrary/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/TestClassLibrary/packages.config -------------------------------------------------------------------------------- /Chapter08/packages/MSTest.TestAdapter.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/packages/MSTest.TestAdapter.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /Chapter08/packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg -------------------------------------------------------------------------------- /Chapter08/packages/MSTest.TestFramework.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/packages/MSTest.TestFramework.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /Chapter08/packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/Chapter08/packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Visual-Studio-2019-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------