├── .gitignore ├── LICENSE.TXT ├── README.TXT ├── binaries ├── Perfy-1.0.0.3.zip ├── Perfy-1.0.0.4.zip └── Perfy-1.0.0.5.zip ├── examples └── wifi 3d printer controller │ ├── circuit.pfp │ ├── circuit.png │ ├── horzpads.png │ ├── template_test.png │ └── vertcuts.png └── src ├── .vs └── Perfy │ └── v16 │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── App.config ├── App.xaml ├── App.xaml.cs ├── Behaviors ├── IMouseCaptureProxy.cs └── MouseCaptureBehavior.cs ├── Converters ├── BindingProxy.cs └── EnumToBoolConverter.cs ├── Dialogs ├── HelpDialogBox.xaml ├── HelpDialogBox.xaml.cs ├── HelpDialogViewModel.cs ├── HelpDocument.cs ├── HelpDocument.xaml ├── MessageBoxPresenter.cs ├── MessageBoxViewModel.cs ├── OpenFileDialogPresenter.cs ├── OpenFileDialogViewModel.cs ├── SaveFileDialogPresenter.cs └── SaveFileDialogViewModel.cs ├── Images ├── components.png ├── conn.png ├── cuts.png ├── firsttrace.png ├── horzconn.png ├── indicators.png ├── isolated.png ├── pads.png ├── padsmode.png ├── perfplus.png ├── rear.png ├── secondtrace.png ├── template.png ├── tip1.png ├── tracemode.png └── via.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model ├── Circuit.cs └── Pad.cs ├── MvvmDialogs ├── Behaviors │ └── DialogBehavior.cs ├── DialogResources.xaml ├── MvvmDialogs.csproj ├── Presenters │ └── IDialogBoxPresenter.cs ├── Properties │ └── AssemblyInfo.cs ├── ViewModel │ ├── IDialogViewModel.cs │ ├── IUserDialogViewModel.cs │ ├── MessageBoxViewModel.cs │ ├── MinimalDialogViewModel.cs │ └── OpenFileDialogViewModel.cs ├── app.config └── packages.config ├── Perfy.csproj ├── Perfy.sln ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── View ├── CellControl.xaml └── CellControl.xaml.cs ├── ViewModel ├── CircuitElementViewModel.cs ├── CircuitViewModel.cs ├── EditMode.cs ├── LabelViewModel.cs ├── MainViewModel.cs ├── PadViewModel.cs ├── Perspective.cs ├── ViewMode.cs └── ViewModelLocator.cs ├── packages.config └── packages ├── CommonServiceLocator.1.3 ├── CommonServiceLocator.1.3.nupkg └── lib │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ ├── Microsoft.Practices.ServiceLocation.XML │ └── Microsoft.Practices.ServiceLocation.dll ├── MvvmLight.5.1.1.0 ├── Content │ └── ViewModel │ │ ├── MainViewModel.cs.pp │ │ └── ViewModelLocator.cs.pp ├── MvvmLight.5.1.1.0.nupkg └── tools │ └── install.ps1 ├── MvvmLightLibs.5.1.1.0 ├── MvvmLightLibs.5.1.1.0.nupkg └── lib │ ├── SL4 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── SL5 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ └── System.Windows.Interactivity.dll │ ├── monoandroid1 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Platform.XML │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.XML │ └── GalaSoft.MvvmLight.dll │ ├── net35 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── net40 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── net45 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ └── System.Windows.Interactivity.dll │ ├── portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.XML │ └── GalaSoft.MvvmLight.dll │ ├── sl4-wp71 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ ├── Microsoft.Practices.ServiceLocation.dll │ ├── Microsoft.Practices.ServiceLocation.xml │ ├── System.Windows.Interactivity.dll │ └── System.Windows.Interactivity.xml │ ├── windows8 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.pri │ ├── GalaSoft.MvvmLight.Platform.xml │ ├── GalaSoft.MvvmLight.dll │ └── GalaSoft.MvvmLight.xml │ ├── windows81 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.pri │ ├── GalaSoft.MvvmLight.Platform.xml │ ├── GalaSoft.MvvmLight.dll │ └── GalaSoft.MvvmLight.xml │ ├── wp8 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ └── System.Windows.Interactivity.dll │ ├── wp81 │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Extras.xml │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.xml │ ├── GalaSoft.MvvmLight.dll │ ├── GalaSoft.MvvmLight.xml │ └── System.Windows.Interactivity.dll │ ├── wpa81 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Platform.XML │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.Platform.pri │ ├── GalaSoft.MvvmLight.XML │ └── GalaSoft.MvvmLight.dll │ └── xamarin.ios10 │ ├── GalaSoft.MvvmLight.Extras.XML │ ├── GalaSoft.MvvmLight.Extras.dll │ ├── GalaSoft.MvvmLight.Platform.XML │ ├── GalaSoft.MvvmLight.Platform.dll │ ├── GalaSoft.MvvmLight.XML │ └── GalaSoft.MvvmLight.dll └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/README.TXT -------------------------------------------------------------------------------- /binaries/Perfy-1.0.0.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/binaries/Perfy-1.0.0.3.zip -------------------------------------------------------------------------------- /binaries/Perfy-1.0.0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/binaries/Perfy-1.0.0.4.zip -------------------------------------------------------------------------------- /binaries/Perfy-1.0.0.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/binaries/Perfy-1.0.0.5.zip -------------------------------------------------------------------------------- /examples/wifi 3d printer controller/circuit.pfp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/examples/wifi 3d printer controller/circuit.pfp -------------------------------------------------------------------------------- /examples/wifi 3d printer controller/circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/examples/wifi 3d printer controller/circuit.png -------------------------------------------------------------------------------- /examples/wifi 3d printer controller/horzpads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/examples/wifi 3d printer controller/horzpads.png -------------------------------------------------------------------------------- /examples/wifi 3d printer controller/template_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/examples/wifi 3d printer controller/template_test.png -------------------------------------------------------------------------------- /examples/wifi 3d printer controller/vertcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/examples/wifi 3d printer controller/vertcuts.png -------------------------------------------------------------------------------- /src/.vs/Perfy/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.vs/Perfy/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/.vs/Perfy/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /src/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/App.config -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/Behaviors/IMouseCaptureProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Behaviors/IMouseCaptureProxy.cs -------------------------------------------------------------------------------- /src/Behaviors/MouseCaptureBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Behaviors/MouseCaptureBehavior.cs -------------------------------------------------------------------------------- /src/Converters/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Converters/BindingProxy.cs -------------------------------------------------------------------------------- /src/Converters/EnumToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Converters/EnumToBoolConverter.cs -------------------------------------------------------------------------------- /src/Dialogs/HelpDialogBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/HelpDialogBox.xaml -------------------------------------------------------------------------------- /src/Dialogs/HelpDialogBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/HelpDialogBox.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/HelpDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/HelpDialogViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/HelpDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/HelpDocument.cs -------------------------------------------------------------------------------- /src/Dialogs/HelpDocument.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/HelpDocument.xaml -------------------------------------------------------------------------------- /src/Dialogs/MessageBoxPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/MessageBoxPresenter.cs -------------------------------------------------------------------------------- /src/Dialogs/MessageBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/MessageBoxViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/OpenFileDialogPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/OpenFileDialogPresenter.cs -------------------------------------------------------------------------------- /src/Dialogs/OpenFileDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/OpenFileDialogViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/SaveFileDialogPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/SaveFileDialogPresenter.cs -------------------------------------------------------------------------------- /src/Dialogs/SaveFileDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Dialogs/SaveFileDialogViewModel.cs -------------------------------------------------------------------------------- /src/Images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/components.png -------------------------------------------------------------------------------- /src/Images/conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/conn.png -------------------------------------------------------------------------------- /src/Images/cuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/cuts.png -------------------------------------------------------------------------------- /src/Images/firsttrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/firsttrace.png -------------------------------------------------------------------------------- /src/Images/horzconn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/horzconn.png -------------------------------------------------------------------------------- /src/Images/indicators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/indicators.png -------------------------------------------------------------------------------- /src/Images/isolated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/isolated.png -------------------------------------------------------------------------------- /src/Images/pads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/pads.png -------------------------------------------------------------------------------- /src/Images/padsmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/padsmode.png -------------------------------------------------------------------------------- /src/Images/perfplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/perfplus.png -------------------------------------------------------------------------------- /src/Images/rear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/rear.png -------------------------------------------------------------------------------- /src/Images/secondtrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/secondtrace.png -------------------------------------------------------------------------------- /src/Images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/template.png -------------------------------------------------------------------------------- /src/Images/tip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/tip1.png -------------------------------------------------------------------------------- /src/Images/tracemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/tracemode.png -------------------------------------------------------------------------------- /src/Images/via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Images/via.png -------------------------------------------------------------------------------- /src/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MainWindow.xaml -------------------------------------------------------------------------------- /src/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Model/Circuit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Model/Circuit.cs -------------------------------------------------------------------------------- /src/Model/Pad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Model/Pad.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/Behaviors/DialogBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/Behaviors/DialogBehavior.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/DialogResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/DialogResources.xaml -------------------------------------------------------------------------------- /src/MvvmDialogs/MvvmDialogs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/MvvmDialogs.csproj -------------------------------------------------------------------------------- /src/MvvmDialogs/Presenters/IDialogBoxPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/Presenters/IDialogBoxPresenter.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/ViewModel/IDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/ViewModel/IDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/ViewModel/IUserDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/ViewModel/IUserDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/ViewModel/MessageBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/ViewModel/MessageBoxViewModel.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/ViewModel/MinimalDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/ViewModel/MinimalDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/ViewModel/OpenFileDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/ViewModel/OpenFileDialogViewModel.cs -------------------------------------------------------------------------------- /src/MvvmDialogs/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/app.config -------------------------------------------------------------------------------- /src/MvvmDialogs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/MvvmDialogs/packages.config -------------------------------------------------------------------------------- /src/Perfy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Perfy.csproj -------------------------------------------------------------------------------- /src/Perfy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Perfy.sln -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/Properties/Settings.settings -------------------------------------------------------------------------------- /src/View/CellControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/View/CellControl.xaml -------------------------------------------------------------------------------- /src/View/CellControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/View/CellControl.xaml.cs -------------------------------------------------------------------------------- /src/ViewModel/CircuitElementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/CircuitElementViewModel.cs -------------------------------------------------------------------------------- /src/ViewModel/CircuitViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/CircuitViewModel.cs -------------------------------------------------------------------------------- /src/ViewModel/EditMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/EditMode.cs -------------------------------------------------------------------------------- /src/ViewModel/LabelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/LabelViewModel.cs -------------------------------------------------------------------------------- /src/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /src/ViewModel/PadViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/PadViewModel.cs -------------------------------------------------------------------------------- /src/ViewModel/Perspective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/Perspective.cs -------------------------------------------------------------------------------- /src/ViewModel/ViewMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/ViewMode.cs -------------------------------------------------------------------------------- /src/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages.config -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.XML -------------------------------------------------------------------------------- /src/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/CommonServiceLocator.1.3/lib/portable-net4+sl5+netcore45+wpa81+wp8/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.1.1.0/Content/ViewModel/MainViewModel.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLight.5.1.1.0/Content/ViewModel/MainViewModel.cs.pp -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.1.1.0/Content/ViewModel/ViewModelLocator.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLight.5.1.1.0/Content/ViewModel/ViewModelLocator.cs.pp -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.1.1.0/MvvmLight.5.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLight.5.1.1.0/MvvmLight.5.1.1.0.nupkg -------------------------------------------------------------------------------- /src/packages/MvvmLight.5.1.1.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLight.5.1.1.0/tools/install.ps1 -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/MvvmLightLibs.5.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/MvvmLightLibs.5.1.1.0.nupkg -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL4/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/monoandroid1/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net35/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net40/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/net45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/net45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/portable-net45+wp8+wpa81+netcore45+monoandroid1+xamarin.ios10/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp8/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Extras.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.Platform.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.xml -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wp81/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.Platform.pri -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.XML -------------------------------------------------------------------------------- /src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/MvvmLightLibs.5.1.1.0/lib/xamarin.ios10/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndale/Perfy/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------