├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md └── Source ├── ExampleConsole ├── App.config ├── ExampleConsole.vbproj ├── Module1.vb └── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── ExampleDesktop ├── App.config ├── Application.xaml ├── Application.xaml.vb ├── ExampleDesktop.vbproj ├── MainWindow.xaml ├── MainWindow.xaml.vb └── My Project │ ├── AssemblyInfo.vb │ ├── MyExtensions │ └── MyWpfExtension.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings └── VbEssentialTraining.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/README.md -------------------------------------------------------------------------------- /Source/ExampleConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/App.config -------------------------------------------------------------------------------- /Source/ExampleConsole/ExampleConsole.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/ExampleConsole.vbproj -------------------------------------------------------------------------------- /Source/ExampleConsole/Module1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/Module1.vb -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Application.myapp -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Resources.resx -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Source/ExampleConsole/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleConsole/My Project/Settings.settings -------------------------------------------------------------------------------- /Source/ExampleDesktop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/App.config -------------------------------------------------------------------------------- /Source/ExampleDesktop/Application.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/Application.xaml -------------------------------------------------------------------------------- /Source/ExampleDesktop/Application.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/Application.xaml.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/ExampleDesktop.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/ExampleDesktop.vbproj -------------------------------------------------------------------------------- /Source/ExampleDesktop/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/MainWindow.xaml -------------------------------------------------------------------------------- /Source/ExampleDesktop/MainWindow.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/MainWindow.xaml.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/MyExtensions/MyWpfExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/MyExtensions/MyWpfExtension.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/Resources.resx -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Source/ExampleDesktop/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/ExampleDesktop/My Project/Settings.settings -------------------------------------------------------------------------------- /Source/VbEssentialTraining.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/vb-esst-2813281/HEAD/Source/VbEssentialTraining.sln --------------------------------------------------------------------------------