├── .gitattributes ├── .gitignore ├── README.md ├── Tools ├── Project Centennial Assests │ ├── AppxManifest.xml │ └── images │ │ ├── Logo.png │ │ ├── Logo150x150.png │ │ ├── Logo44x44.png │ │ └── Logo71x71.png └── Register.bat ├── VMGuide.CUI ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── VMGuide.CUI.csproj ├── VMGuide.Core ├── Properties │ └── AssemblyInfo.cs ├── VMGuide.Core.csproj ├── VMGuide.Core.sln ├── base.cs ├── vbox.cs ├── virtualpc.cs └── vmware.cs ├── VMGuide.GUI ├── App.config ├── App.xaml ├── App.xaml.cs ├── Close.png ├── Converters.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Icon.ico │ ├── Logo.png │ └── segmdl2.ttf ├── Styles.xaml ├── Utils.cs └── VMGuide.GUI.csproj └── VMGuide.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Project Centennial Assests/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Project Centennial Assests/AppxManifest.xml -------------------------------------------------------------------------------- /Tools/Project Centennial Assests/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Project Centennial Assests/images/Logo.png -------------------------------------------------------------------------------- /Tools/Project Centennial Assests/images/Logo150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Project Centennial Assests/images/Logo150x150.png -------------------------------------------------------------------------------- /Tools/Project Centennial Assests/images/Logo44x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Project Centennial Assests/images/Logo44x44.png -------------------------------------------------------------------------------- /Tools/Project Centennial Assests/images/Logo71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Project Centennial Assests/images/Logo71x71.png -------------------------------------------------------------------------------- /Tools/Register.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/Tools/Register.bat -------------------------------------------------------------------------------- /VMGuide.CUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.CUI/App.config -------------------------------------------------------------------------------- /VMGuide.CUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.CUI/Program.cs -------------------------------------------------------------------------------- /VMGuide.CUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.CUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VMGuide.CUI/VMGuide.CUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.CUI/VMGuide.CUI.csproj -------------------------------------------------------------------------------- /VMGuide.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VMGuide.Core/VMGuide.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/VMGuide.Core.csproj -------------------------------------------------------------------------------- /VMGuide.Core/VMGuide.Core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/VMGuide.Core.sln -------------------------------------------------------------------------------- /VMGuide.Core/base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/base.cs -------------------------------------------------------------------------------- /VMGuide.Core/vbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/vbox.cs -------------------------------------------------------------------------------- /VMGuide.Core/virtualpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/virtualpc.cs -------------------------------------------------------------------------------- /VMGuide.Core/vmware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.Core/vmware.cs -------------------------------------------------------------------------------- /VMGuide.GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/App.config -------------------------------------------------------------------------------- /VMGuide.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/App.xaml -------------------------------------------------------------------------------- /VMGuide.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/App.xaml.cs -------------------------------------------------------------------------------- /VMGuide.GUI/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Close.png -------------------------------------------------------------------------------- /VMGuide.GUI/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Converters.cs -------------------------------------------------------------------------------- /VMGuide.GUI/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/HomePage.xaml -------------------------------------------------------------------------------- /VMGuide.GUI/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/HomePage.xaml.cs -------------------------------------------------------------------------------- /VMGuide.GUI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/MainPage.xaml -------------------------------------------------------------------------------- /VMGuide.GUI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/MainPage.xaml.cs -------------------------------------------------------------------------------- /VMGuide.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /VMGuide.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /VMGuide.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VMGuide.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VMGuide.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /VMGuide.GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VMGuide.GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /VMGuide.GUI/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Resources/Icon.ico -------------------------------------------------------------------------------- /VMGuide.GUI/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Resources/Logo.png -------------------------------------------------------------------------------- /VMGuide.GUI/Resources/segmdl2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Resources/segmdl2.ttf -------------------------------------------------------------------------------- /VMGuide.GUI/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Styles.xaml -------------------------------------------------------------------------------- /VMGuide.GUI/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/Utils.cs -------------------------------------------------------------------------------- /VMGuide.GUI/VMGuide.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.GUI/VMGuide.GUI.csproj -------------------------------------------------------------------------------- /VMGuide.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driver1998/VMGuide/HEAD/VMGuide.sln --------------------------------------------------------------------------------