├── .hgignore ├── .hgtags ├── GalaSoft.MvvmLight ├── External │ ├── NET35 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ ├── NET4 │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ ├── NET45 │ │ └── System.Windows.Interactivity.dll │ ├── SL4 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── Microsoft.Silverlight.Testing.dll │ │ ├── Microsoft.Silverlight.Testing.xml │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ ├── SL5 │ │ ├── Microsoft.Silverlight.Testing.dll │ │ ├── Microsoft.Silverlight.Testing.xml │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ └── System.Windows.Interactivity.dll │ ├── WP71 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── Microsoft.Silverlight.Testing.dll │ │ ├── Microsoft.Silverlight.Testing.xml │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ ├── WPA81 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ └── Microsoft.Practices.ServiceLocation.dll │ ├── WPSL80 │ │ └── System.Windows.Interactivity.dll │ └── WPSL81 │ │ └── System.Windows.Interactivity.dll ├── GalaSoft.MvvmLight (NET35) │ ├── GalaSoft.MvvmLight (NET35).csproj │ ├── GalaSoft.MvvmLight (NET35).snk │ └── Properties │ │ └── AssemblyInfo.Net35.cs ├── GalaSoft.MvvmLight (NET4) │ ├── GalaSoft.MvvmLight (NET4).csproj │ ├── GalaSoft.MvvmLight (NET4).snk │ └── Properties │ │ └── AssemblyInfo.Net4.cs ├── GalaSoft.MvvmLight (PCL) │ ├── Command │ │ ├── RelayCommand.cs │ │ └── RelayCommandGeneric.cs │ ├── GalaSoft.MvvmLight (PCL).csproj │ ├── GalaSoft.MvvmLight (PCL).snk │ ├── Helpers │ │ ├── DesignerPlatformLibrary.cs │ │ ├── Empty.cs │ │ ├── FeatureDetection.cs │ │ ├── IExecuteWithObject.cs │ │ ├── IExecuteWithObjectAndResult.cs │ │ ├── WeakAction.cs │ │ ├── WeakActionGeneric.cs │ │ ├── WeakFunc.cs │ │ └── WeakFuncGeneric.cs │ ├── ICleanup.cs │ ├── License.txt │ ├── Messaging │ │ ├── DialogMessage.cs │ │ ├── GenericMessage.cs │ │ ├── IMessenger.cs │ │ ├── MessageBase.cs │ │ ├── Messenger.cs │ │ ├── NotificationMessage.cs │ │ ├── NotificationMessageAction.cs │ │ ├── NotificationMessageActionGeneric.cs │ │ ├── NotificationMessageGeneric.cs │ │ ├── NotificationMessageWithCallback.cs │ │ ├── PropertyChangedMessage.cs │ │ └── PropertyChangedMessageBase.cs │ ├── ObservableObject.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ViewModelBase.cs │ └── Views │ │ ├── IDialogService.cs │ │ └── INavigationService.cs ├── GalaSoft.MvvmLight (SL4) │ ├── GalaSoft.MvvmLight (SL4).csproj │ └── GalaSoft.MvvmLight (SL4).snk ├── GalaSoft.MvvmLight (SL5) │ ├── GalaSoft.MvvmLight (SL5).csproj │ └── GalaSoft.MvvmLight (SL5).snk ├── GalaSoft.MvvmLight (VS2012).sln ├── GalaSoft.MvvmLight (VS2013).sln ├── GalaSoft.MvvmLight (WP71) │ └── GalaSoft.MvvmLight (WP71).csproj ├── GalaSoft.MvvmLight.Extras (NET35) │ ├── GalaSoft.MvvmLight.Extras (NET35).csproj │ ├── GalaSoft.MvvmLight.Extras (NET35).snk │ └── Properties │ │ └── AssemblyInfo.Net35.cs ├── GalaSoft.MvvmLight.Extras (NET4) │ ├── GalaSoft.MvvmLight.Extras (NET4).csproj │ ├── GalaSoft.MvvmLight.Extras (NET4).snk │ ├── Properties │ │ └── AssemblyInfo.Net4.cs │ └── packages.config ├── GalaSoft.MvvmLight.Extras (PCL) │ ├── GalaSoft.MvvmLight.Extras (PCL).csproj │ ├── GalaSoft.MvvmLight.Extras (PCL).snk │ ├── Ioc │ │ ├── ISimpleIoc.cs │ │ ├── PreferredConstructor.cs │ │ └── SimpleIoc.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── GalaSoft.MvvmLight.Extras (SL4) │ ├── GalaSoft.MvvmLight.Extras (SL4).csproj │ └── GalaSoft.MvvmLight.Extras (SL4).snk ├── GalaSoft.MvvmLight.Extras (SL5) │ ├── GalaSoft.MvvmLight.Extras (SL5).csproj │ ├── GalaSoft.MvvmLight.Extras (SL5).snk │ └── packages.config ├── GalaSoft.MvvmLight.Extras (WP71) │ └── GalaSoft.MvvmLight.Extras (WP71).csproj ├── GalaSoft.MvvmLight.Platform (Android) │ ├── GalaSoft.MvvmLight.Platform (Android).csproj │ ├── Helpers │ │ ├── Binding.cs │ │ ├── BindingGeneric.cs │ │ ├── BindingMode.cs │ │ ├── Extensions.cs │ │ ├── IWeakEventListener.cs │ │ ├── ObservableAdapter.cs │ │ ├── PropertyChangedEventManager.cs │ │ └── UpdateSourceTriggerMode.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ └── Values │ │ │ └── Strings.xml │ ├── Threading │ │ └── DispatcherHelper.cs │ └── Views │ │ ├── ActivityBase.cs │ │ ├── DialogService.cs │ │ └── NavigationService.cs ├── GalaSoft.MvvmLight.Platform (NET45) │ ├── Command │ │ ├── EventToCommand.cs │ │ └── IEventArgsConverter.cs │ ├── GalaSoft.MvvmLight.Platform (NET45).csproj │ ├── GalaSoft.MvvmLight.Platform (NET45).snk │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Threading │ │ └── DispatcherHelper.cs │ └── packages.config ├── GalaSoft.MvvmLight.Platform (WIN8) │ ├── BUILDINSTRUCTIONS.txt │ ├── GalaSoft.MvvmLight.Platform (WIN8).csproj │ └── GalaSoft.MvvmLight.Platform (WIN8).snk ├── GalaSoft.MvvmLight.Platform (WIN81) │ ├── GalaSoft.MvvmLight.Platform (WIN81).csproj │ ├── GalaSoft.MvvmLight.Platform (WIN81).snk │ ├── Views │ │ ├── DialogService.cs │ │ └── NavigationService.cs │ └── packages.config ├── GalaSoft.MvvmLight.Platform (WP81) │ ├── GalaSoft.MvvmLight.Platform (WP81).csproj │ ├── GalaSoft.MvvmLight.Platform (WP81).snk │ └── packages.config ├── GalaSoft.MvvmLight.Platform (WPSL80) │ ├── GalaSoft.MvvmLight.Platform (WPSL80).csproj │ └── packages.config ├── GalaSoft.MvvmLight.Platform (WPSL81) │ ├── GalaSoft.MvvmLight.Platform (WPSL81).csproj │ ├── Views │ │ ├── DialogService.cs │ │ └── NavigationService.cs │ └── packages.config ├── GalaSoft.MvvmLight.Platform (iOS) │ ├── GalaSoft.MvvmLight.Platform (iOS).csproj │ ├── Helpers │ │ └── ObservableTableViewController.cs │ ├── Threading │ │ └── DispatcherHelper.cs │ └── Views │ │ ├── ControllerBase.cs │ │ ├── DialogService.cs │ │ └── NavigationService.cs ├── Tests │ ├── GalaSoft.MvvmLight.Test (NET35) │ │ └── GalaSoft.MvvmLight.Test (NET35).csproj │ ├── GalaSoft.MvvmLight.Test (NET4) │ │ ├── GalaSoft.MvvmLight.Test (NET4).csproj │ │ ├── Messaging │ │ │ └── DialogMessageTest.cs │ │ ├── Stubs │ │ │ ├── TestCustomTypeDescriptor.cs │ │ │ └── TestPropertyDescriptor.cs │ │ └── packages.config │ ├── GalaSoft.MvvmLight.Test (SL5) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GalaSoft.MvvmLight.Test (SL5).csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.SL5.cs │ │ └── packages.config │ ├── GalaSoft.MvvmLight.Test (WP71) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationIcon.png │ │ ├── Background.png │ │ ├── GalaSoft.MvvmLight.Test (WP71).csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.Wp71.cs │ │ │ └── WMAppManifest.xml │ │ └── SplashScreenImage.jpg │ └── PCL │ │ ├── GalaSoft.MvvmLight.Test (PNET45) │ │ ├── Command │ │ │ ├── EventArgsConverter.cs │ │ │ ├── EventToCommandEventArgsTest.cs │ │ │ ├── EventToCommandStub.cs │ │ │ ├── EventToCommandTest.cs │ │ │ ├── RelayCommandGenericTest.cs │ │ │ ├── RelayCommandTest.cs │ │ │ ├── StringEventArgs.cs │ │ │ ├── TemporaryClass.cs │ │ │ └── TestViewModel.cs │ │ ├── GalaSoft.MvvmLight.Test (PNET45).csproj │ │ ├── Helpers │ │ │ ├── CommonTestClass.cs │ │ │ ├── InternalTestClass.cs │ │ │ ├── InternalTestClassGeneric.cs │ │ │ ├── InternalTestClassGenericWithResult.cs │ │ │ ├── InternalTestClassWithResult.cs │ │ │ ├── PublicTestClass.cs │ │ │ ├── PublicTestClassGeneric.cs │ │ │ ├── PublicTestClassGenericWithResult.cs │ │ │ ├── PublicTestClassWithResult.cs │ │ │ ├── TestCase.cs │ │ │ ├── WeakActionGenericNestedTest.cs │ │ │ ├── WeakActionGenericTest.cs │ │ │ ├── WeakActionNestedTest.cs │ │ │ ├── WeakActionTest.cs │ │ │ ├── WeakFuncGenericNestedTest.cs │ │ │ ├── WeakFuncGenericTest.cs │ │ │ ├── WeakFuncNestedTest.cs │ │ │ └── WeakFuncTest.cs │ │ ├── Ioc │ │ │ ├── SimpleIocTestAutoCreation.cs │ │ │ ├── SimpleIocTestContains.cs │ │ │ ├── SimpleIocTestCreationTime.cs │ │ │ ├── SimpleIocTestIsRegistered.cs │ │ │ ├── SimpleIocTestMultipleConstructors.cs │ │ │ ├── SimpleIocTestMultipleInstances.cs │ │ │ ├── SimpleIocTestSingleInstance.cs │ │ │ └── SimpleIocTestUnregistration.cs │ │ ├── Messaging │ │ │ ├── GarbageCollectionTest.cs │ │ │ ├── ITestMessage.cs │ │ │ ├── MessengerBroadcastToAllTest.cs │ │ │ ├── MessengerCreationDeletionTest.cs │ │ │ ├── MessengerMultipleInstancesTest.cs │ │ │ ├── MessengerOverrideDefaultTest.cs │ │ │ ├── MessengerRegisterUnregisterTest.cs │ │ │ ├── MessengerRegisterWhileSendingTest.cs │ │ │ ├── MessengerSendToAllTest.cs │ │ │ ├── MessengerSendToTypeTest.cs │ │ │ ├── MessengerSendWithTokenTest.cs │ │ │ ├── MessengerTestConstrainingMessages.cs │ │ │ ├── NotificationMessageActionTest.cs │ │ │ ├── NotificationMessageTest.cs │ │ │ ├── PropertyChangedMessageTest.cs │ │ │ ├── TestMessageBase.cs │ │ │ └── TestMessageImpl.cs │ │ ├── ObservableObjectPropertyChangedTest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Stubs │ │ │ ├── ITestClass.cs │ │ │ ├── TestBaseClass.cs │ │ │ ├── TestClass1.cs │ │ │ ├── TestClass2.cs │ │ │ ├── TestClass3.cs │ │ │ ├── TestClass4.cs │ │ │ ├── TestClass5.cs │ │ │ ├── TestClass6.cs │ │ │ ├── TestClass7.cs │ │ │ ├── TestClass8.cs │ │ │ ├── TestClass9.cs │ │ │ ├── TestClassForCreationTime.cs │ │ │ └── TestClassWithMultiConstructors.cs │ │ ├── Threading │ │ │ └── DispatcherHelperTest.cs │ │ ├── ViewModel │ │ │ ├── TestClassWithObservableObject.cs │ │ │ ├── TestViewModel.cs │ │ │ ├── TestViewModelNoMagicString.cs │ │ │ └── ViewModelStub.cs │ │ ├── ViewModelBaseTest.cs │ │ └── packages.config │ │ ├── GalaSoft.MvvmLight.Test (PWIN81) │ │ ├── GalaSoft.MvvmLight.Test (PWIN81).csproj │ │ ├── GalaSoft.MvvmLight.Test (WIN81)_TemporaryKey.pfx │ │ ├── Images │ │ │ ├── UnitTestLogo.scale-100.png │ │ │ ├── UnitTestSmallLogo.scale-100.png │ │ │ ├── UnitTestSplashScreen.scale-100.png │ │ │ └── UnitTestStoreLogo.scale-100.png │ │ ├── Package.appxmanifest │ │ └── packages.config │ │ ├── GalaSoft.MvvmLight.Test (PWP81) │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ └── WideLogo.scale-240.png │ │ ├── GalaSoft.MvvmLight.Test (PWP81).csproj │ │ ├── GalaSoft.MvvmLight.Test (PWP81)_TemporaryKey.pfx │ │ ├── Package.appxmanifest │ │ └── packages.config │ │ ├── GalaSoft.MvvmLight.Test (PWPSL80) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ └── FlipCycleTileSmall.png │ │ ├── GalaSoft.MvvmLight.Test (PWPSL80).csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── packages.config │ │ └── GalaSoft.MvvmLight.Test (PWPSL81) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ ├── BadgeLogo.png │ │ ├── Logo.png │ │ ├── SplashScreen.png │ │ ├── SquareTile150x150.png │ │ ├── SquareTile71x71.png │ │ ├── StoreLogo.png │ │ ├── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ └── FlipCycleTileSmall.png │ │ └── WideLogo.png │ │ ├── GalaSoft.MvvmLight.Test (PWPSL81).csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AppManifest.xml │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ │ └── packages.config ├── _gatherbinaries.bat ├── clean.bat └── packages │ ├── CommonServiceLocator.1.3 │ ├── CommonServiceLocator.1.3.nupkg │ └── lib │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ └── Microsoft.Practices.ServiceLocation.dll │ └── repositories.config ├── Installer ├── InstallItems │ ├── Nuget │ │ ├── CommonServiceLocator.1.0.nupkg │ │ ├── CommonServiceLocator.1.3.nupkg │ │ ├── MvvmLight.5.2.0.0.nupkg │ │ └── MvvmLightLibs.5.2.0.0.nupkg │ ├── Snippets │ │ ├── CSharp │ │ │ ├── mvvmFormsBindableProp.snippet │ │ │ ├── mvvmInpc.snippet │ │ │ ├── mvvmInpcLambda.snippet │ │ │ ├── mvvmInpcLambdaMsg.snippet │ │ │ ├── mvvmInpcMsg.snippet │ │ │ ├── mvvmInpcSet.snippet │ │ │ ├── mvvmInpcSetLambda.snippet │ │ │ ├── mvvmInpcSetLambdaMsg.snippet │ │ │ ├── mvvmInpcSetMsg.snippet │ │ │ ├── mvvmPropA.snippet │ │ │ ├── mvvmPropDP.snippet │ │ │ ├── mvvmRelay.snippet │ │ │ ├── mvvmRelayCanExecute.snippet │ │ │ ├── mvvmRelayGeneric.snippet │ │ │ ├── mvvmRelayGenericCanExecute.snippet │ │ │ ├── mvvmRelayMethod.snippet │ │ │ ├── mvvmRelayMethodCanExecute.snippet │ │ │ ├── mvvmRelayMethodGeneric.snippet │ │ │ ├── mvvmRelayMethodGenericCanExecute.snippet │ │ │ ├── mvvmSLPropA.snippet │ │ │ ├── mvvmSLPropDP.snippet │ │ │ ├── mvvmViewModelLocatorProperty.snippet │ │ │ ├── mvvmVm.snippet │ │ │ └── mvvmdroidelement.snippet │ │ ├── Snippets.sln │ │ └── VB │ │ │ ├── mvvmInpc.snippet │ │ │ ├── mvvmInpcLambda.snippet │ │ │ └── mvvmInpcSet.snippet │ └── Templates │ │ ├── ItemTemplates │ │ ├── View.SL.zip │ │ ├── View.WP7.zip │ │ ├── View.WP8.zip │ │ ├── View.WPF.zip │ │ ├── View.Win8.zip │ │ ├── View.Win81.zip │ │ ├── Vm.SL.zip │ │ ├── Vm.WP7.zip │ │ ├── Vm.WP8.zip │ │ ├── Vm.WPF.zip │ │ ├── Vm.Win8.zip │ │ ├── Vm.Win81.zip │ │ ├── Vml.SL.zip │ │ ├── Vml.WP7.zip │ │ ├── Vml.WP8.zip │ │ ├── Vml.WPF.zip │ │ ├── Vml.Win8.zip │ │ └── Vml.Win81.zip │ │ └── ProjectTemplates │ │ ├── VS2012 │ │ ├── Mvvm.Droid.zip │ │ ├── Mvvm.SL4.zip │ │ ├── Mvvm.SL5.zip │ │ ├── Mvvm.WP71.zip │ │ ├── Mvvm.WP8.zip │ │ ├── Mvvm.WPF35.zip │ │ ├── Mvvm.WPF4.zip │ │ ├── Mvvm.WPF45.zip │ │ ├── Mvvm.Win8.zip │ │ └── Mvvm.iPhone.zip │ │ ├── VS2013 │ │ ├── Mvvm.Droid.zip │ │ ├── Mvvm.SL5.zip │ │ ├── Mvvm.WP8.zip │ │ ├── Mvvm.WP81.zip │ │ ├── Mvvm.WPA81.zip │ │ ├── Mvvm.WPF35.zip │ │ ├── Mvvm.WPF4.zip │ │ ├── Mvvm.WPF45.zip │ │ ├── Mvvm.WPF451.zip │ │ ├── Mvvm.Win81.zip │ │ └── Mvvm.iPhone.zip │ │ └── VS2015 │ │ ├── Mvvm.Droid.zip │ │ ├── Mvvm.SL5.zip │ │ ├── Mvvm.WP8.zip │ │ ├── Mvvm.WP81.zip │ │ ├── Mvvm.WPA81.zip │ │ ├── Mvvm.WPF451.zip │ │ ├── Mvvm.Win10Univ.zip │ │ ├── Mvvm.Win81.zip │ │ └── Mvvm.iPhone.zip └── StandardVSIX │ ├── Assets │ ├── Icon Purple 100x100.png │ ├── License.rtf │ ├── MvvmLight.png │ ├── MvvmLightCSharpSnippets.pkgdef │ └── MvvmLightVbSnippets.pkgdef │ ├── MvvmLight.VS2010.sln │ ├── MvvmLight.VS2010 │ ├── GlobalSuppressions.cs │ ├── Guids.cs │ ├── Icon Purple 100x100.png │ ├── Key.snk │ ├── License.rtf │ ├── MvvmLight.VS10Package.cs │ ├── MvvmLight.VS2010.csproj │ ├── MvvmLight.png │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources │ │ └── Package.ico │ ├── VSPackage.resx │ └── source.extension.vsixmanifest │ ├── MvvmLight.VS2012.sln │ ├── MvvmLight.VS2012 │ ├── GlobalSuppressions.cs │ ├── Guids.cs │ ├── Key.snk │ ├── MvvmLight.VS2012.csproj │ ├── MvvmLight.VS2012Package.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources │ │ └── Package.ico │ ├── VSPackage.resx │ └── source.extension.vsixmanifest │ ├── MvvmLight.VS2013.sln │ ├── MvvmLight.VS2013 │ ├── MvvmLight.VS2013.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── source.extension.vsixmanifest │ ├── MvvmLight.VS2015.sln │ ├── MvvmLight.VS2015 │ ├── MvvmLight.VS2015.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── source.extension.vsixmanifest │ └── _gatherbinaries.bat ├── NuGet ├── MvvmLight.V5.nuspec ├── MvvmLightLibs.V5.nuspec ├── V5Full │ ├── Content │ │ └── ViewModel │ │ │ ├── MainViewModel.cs.pp │ │ │ └── ViewModelLocator.cs.pp │ └── Tools │ │ └── install.ps1 └── V5Libs │ └── Tools │ └── install.ps1 ├── README.md ├── Samples ├── CleanShutdown │ ├── CleanShutdown.SL │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CleanShutdown.SL.csproj │ │ ├── Helpers │ │ │ ├── ApplicationExtensions.cs │ │ │ ├── Settings.SL.cs │ │ │ └── SettingsFileHandler.cs │ │ ├── License.txt │ │ ├── Page.xaml │ │ ├── Page.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ └── Skins │ │ │ └── MainSkin.xaml │ ├── CleanShutdown.sln │ ├── CleanShutdown │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CleanShutdown.csproj │ │ ├── GalaSoft.ico │ │ ├── Helpers │ │ │ ├── Settings.cs │ │ │ ├── SettingsFileHandler.cs │ │ │ ├── ShutdownAnimationService.cs │ │ │ └── ShutdownService.cs │ │ ├── License.txt │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Messaging │ │ │ ├── NotificationMessageAction.cs │ │ │ ├── NotificationMessageFunc.cs │ │ │ ├── NotificationMessageWithCallback.cs │ │ │ └── Notifications.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Skins │ │ │ └── MainSkin.xaml │ │ └── ViewModel │ │ │ ├── MainViewModel.cs │ │ │ ├── SettingsViewModel.cs │ │ │ └── ViewModelLocator.cs │ ├── External │ │ ├── Silverlight │ │ │ └── GalaSoft.MvvmLight.dll │ │ └── WPF │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── WPFToolkit.dll │ └── clean-with-scc.bat ├── EventToCommand │ ├── EventToCommand.SL │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── EventToCommand.SL.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Settings.StyleCop │ ├── EventToCommand.sln │ ├── EventToCommand │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── EventToCommand.csproj │ │ ├── MainUserControl.xaml │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Settings.StyleCop │ │ ├── Skins │ │ │ └── MainSkin.xaml │ │ └── ViewModel │ │ │ ├── Brushes.cs │ │ │ ├── MainViewModel.cs │ │ │ └── ViewModelLocator.cs │ ├── EventToCommandDemo │ │ ├── EventToCommand.xap │ │ └── TestPage.html │ ├── References │ │ ├── Silverlight │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── System.Windows.Interactivity.dll │ │ └── WPF │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── WPFToolkit.dll │ └── clean-with-scc.bat ├── Flowers │ ├── Components │ │ ├── sdwebimage-3.7.1.2.info │ │ ├── sdwebimage-3.7.1.2.png │ │ └── sdwebimage-3.7.1.2 │ │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ └── icons │ │ │ │ ├── sdwebimage_128x128.png │ │ │ │ └── sdwebimage_512x512.png │ │ │ ├── lib │ │ │ ├── ios-unified │ │ │ │ └── SDWebImage.dll │ │ │ └── ios │ │ │ │ └── SDWebImage.dll │ │ │ └── samples │ │ │ ├── SDWebImageMTDialogSample-Classic │ │ │ ├── SDWebImageMTDialogSample-Classic.sln │ │ │ └── SDWebImageMTDialogSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── ImageLoaderElement.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageMTDialogSample-Classic.csproj │ │ │ ├── SDWebImageMTDialogSample │ │ │ ├── SDWebImageMTDialogSample.sln │ │ │ └── SDWebImageMTDialogSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── ImageLoaderElement.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageMTDialogSample.csproj │ │ │ ├── SDWebImageSample-Classic │ │ │ ├── SDWebImageSample-Classic.sln │ │ │ └── SDWebImageSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── DetailViewController.designer.cs │ │ │ │ ├── DetailViewController.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MasterViewController.cs │ │ │ │ ├── MasterViewController.designer.cs │ │ │ │ ├── MasterViewController.xib │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageSample-Classic.csproj │ │ │ ├── SDWebImageSample │ │ │ ├── SDWebImageSample.sln │ │ │ └── SDWebImageSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── DetailViewController.cs │ │ │ │ ├── DetailViewController.designer.cs │ │ │ │ ├── DetailViewController.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MasterViewController.cs │ │ │ │ ├── MasterViewController.designer.cs │ │ │ │ ├── MasterViewController.xib │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ └── SDWebImageSample.csproj │ │ │ ├── SDWebImageSimpleSample-Classic │ │ │ ├── SDWebImageSimpleSample-Classic.sln │ │ │ └── SDWebImageSimpleSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── placeholder.png │ │ │ │ └── placeholder@2x.png │ │ │ │ ├── SDWebImageSimpleSample-Classic.csproj │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ └── SDWebImageSimpleSample │ │ │ ├── SDWebImageSimpleSample.sln │ │ │ └── SDWebImageSimpleSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── placeholder.png │ │ │ └── placeholder@2x.png │ │ │ ├── SDWebImageSimpleSample.csproj │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ ├── Flowers.Data │ │ ├── Design │ │ │ ├── DesignFlowersService.cs │ │ │ └── DesignNavigationService.cs │ │ ├── Flowers.Data.csproj │ │ ├── Model │ │ │ ├── Comment.cs │ │ │ ├── Flower.cs │ │ │ ├── FlowersResult.cs │ │ │ ├── FlowersService.cs │ │ │ └── IFlowersService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ViewModel │ │ │ ├── FlowerViewModel.cs │ │ │ ├── MainViewModel.cs │ │ │ └── ViewModelLocator.cs │ │ └── packages.config │ ├── Flowers.Droid │ │ ├── AddCommentActivity.cs │ │ ├── AddCommentActivity.ui.cs │ │ ├── App.cs │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DetailsActivity.cs │ │ ├── DetailsActivity.ui.cs │ │ ├── Flowers.Droid.csproj │ │ ├── Helpers │ │ │ ├── ActivityBaseEx.cs │ │ │ └── ImageDownloader.cs │ │ ├── MainActivity.cs │ │ ├── MainActivity.ui.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ ├── AddComment.axml │ │ │ │ ├── CommentsListHeaderView.axml │ │ │ │ ├── Details.axml │ │ │ │ ├── FlowerTemplate.axml │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── app.config │ │ └── packages.config │ ├── Flowers.Forms.sln │ ├── Flowers.Forms │ │ ├── Flowers.Forms.Droid │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── Flowers.Forms.Droid.csproj │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ └── drawable │ │ │ │ │ └── icon.png │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── Flowers.Forms.WinPhone │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── AlignmentGrid.png │ │ │ │ ├── ApplicationIcon.png │ │ │ │ └── Tiles │ │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ │ └── IconicTileSmall.png │ │ │ ├── Flowers.Forms.WinPhone.csproj │ │ │ ├── LocalizedStrings.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AppManifest.xml │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── WMAppManifest.xml │ │ │ ├── README_FIRST.txt │ │ │ ├── Resources │ │ │ │ ├── AppResources.Designer.cs │ │ │ │ └── AppResources.resx │ │ │ ├── SplashScreenImage.jpg │ │ │ ├── Toolkit.Content │ │ │ │ ├── ApplicationBar.Add.png │ │ │ │ ├── ApplicationBar.Cancel.png │ │ │ │ ├── ApplicationBar.Check.png │ │ │ │ ├── ApplicationBar.Delete.png │ │ │ │ └── ApplicationBar.Select.png │ │ │ └── packages.config │ │ ├── Flowers.Forms.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Flowers.Forms.iOS.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small-40.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── app.config │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── packages.config │ │ └── Flowers.Forms │ │ │ ├── AddCommentPage.xaml │ │ │ ├── AddCommentPage.xaml.cs │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── DetailsPage.xaml │ │ │ ├── DetailsPage.xaml.cs │ │ │ ├── Flowers.Forms.csproj │ │ │ ├── Helpers │ │ │ ├── DialogService.cs │ │ │ └── NavigationService.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ShowCommentsPage.xaml │ │ │ ├── ShowCommentsPage.xaml.cs │ │ │ └── packages.config │ ├── Flowers.Web.sln │ ├── Flowers.Web │ │ ├── App_Data │ │ │ ├── flowers.bak.json │ │ │ └── flowers.json │ │ ├── Design │ │ │ └── flowericon.png │ │ ├── Flowers.Web.csproj │ │ ├── FlowersService.ashx │ │ ├── FlowersService.ashx.cs │ │ ├── Helpers │ │ │ └── Log.cs │ │ ├── Model │ │ │ └── WebConstants.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── images │ │ │ ├── BeeOrchid.jpg │ │ │ ├── BermudaButtercup.jpg │ │ │ ├── BindWeed.jpg │ │ │ ├── BlueGem.jpg │ │ │ ├── CallaLily.jpg │ │ │ ├── CommonMallow.jpg │ │ │ ├── CratevaReligiosa.jpg │ │ │ ├── Lantana.jpg │ │ │ ├── Oleander.jpg │ │ │ ├── OrangeCosmos.jpg │ │ │ ├── Poppy.jpg │ │ │ ├── PrimulaFarinosa.jpg │ │ │ ├── ScarletPimpernel.jpg │ │ │ ├── SpanishOyster.jpg │ │ │ ├── StBernardLily.jpg │ │ │ ├── StorksBill.jpg │ │ │ └── Verbascum.jpg │ │ ├── index.html │ │ └── packages.config │ ├── Flowers.Wp │ │ ├── AddCommentPage.xaml │ │ ├── AddCommentPage.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationIcon.png │ │ ├── Assets │ │ │ ├── ApplicationIcon.png │ │ │ ├── BadgeLogo.png │ │ │ ├── Icon.png │ │ │ ├── Logo.png │ │ │ ├── SplashScreen.png │ │ │ ├── SquareTile150x150.png │ │ │ ├── SquareTile71x71.png │ │ │ ├── StoreLogo.png │ │ │ └── WideLogo.png │ │ ├── DetailsPage.xaml │ │ ├── DetailsPage.xaml.cs │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── Flowers.Wp.csproj │ │ ├── Helpers │ │ │ └── PhonePageBase.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── Styles │ │ │ └── MiscStyles.xaml │ │ └── packages.config │ ├── Flowers.iOSSbd │ │ ├── AddCommentViewController.cs │ │ ├── AddCommentViewController.designer.cs │ │ ├── AppDelegate.cs │ │ ├── DetailsViewController.cs │ │ ├── DetailsViewController.designer.cs │ │ ├── Entitlements.plist │ │ ├── Flowers.iOSSbd.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard.storyboard │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewController1.designer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── flower_256_magenta.png │ │ ├── SeeCommentsViewController.cs │ │ ├── SeeCommentsViewController.designer.cs │ │ └── packages.config │ ├── Flowers.iOSUnified │ │ ├── AddCommentViewController.cs │ │ ├── AddCommentViewController.ui.cs │ │ ├── AppDelegate.cs │ │ ├── AppDelegate.ui.cs │ │ ├── DetailsViewController.cs │ │ ├── DetailsViewController.ui.cs │ │ ├── Entitlements.plist │ │ ├── Flowers.iOSUnified.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── flower_256_magenta.png │ │ ├── UniversalView.cs │ │ └── packages.config │ ├── Flowers.sln │ ├── References │ │ ├── Android │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ └── GalaSoft.MvvmLight.Platform.xml │ │ ├── NET35 │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── GalaSoft.MvvmLight.xml │ │ ├── PCL │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.xml │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ └── GalaSoft.MvvmLight.xml │ │ ├── WPSL │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ ├── GalaSoft.MvvmLight.Platform.xml │ │ │ └── System.Windows.Interactivity.dll │ │ └── iOS │ │ │ ├── GalaSoft.MvvmLight.Platform.dll │ │ │ └── GalaSoft.MvvmLight.Platform.xml │ ├── clean-with-scc.bat │ └── packages │ │ ├── CommonServiceLocator.1.3 │ │ ├── CommonServiceLocator.1.3.nupkg │ │ └── lib │ │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ └── Microsoft.Practices.ServiceLocation.dll.mdb │ │ ├── Microsoft.Bcl.1.1.9 │ │ ├── License-Stable.rtf │ │ ├── Microsoft.Bcl.1.1.9.nupkg │ │ ├── content │ │ │ ├── monoandroid │ │ │ │ └── _._ │ │ │ ├── monotouch │ │ │ │ └── _._ │ │ │ ├── net45 │ │ │ │ └── _._ │ │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ │ └── _._ │ │ │ ├── portable-net45+win8+wpa81 │ │ │ │ └── _._ │ │ │ ├── portable-net451+win81+wpa81 │ │ │ │ └── _._ │ │ │ ├── portable-net451+win81 │ │ │ │ └── _._ │ │ │ ├── portable-win81+wp81+wpa81 │ │ │ │ └── _._ │ │ │ ├── sl4 │ │ │ │ └── _._ │ │ │ ├── sl5 │ │ │ │ └── _._ │ │ │ ├── win8 │ │ │ │ └── _._ │ │ │ ├── wp8 │ │ │ │ └── _._ │ │ │ └── wpa81 │ │ │ │ └── _._ │ │ └── lib │ │ │ ├── monoandroid │ │ │ └── _._ │ │ │ ├── monotouch │ │ │ └── _._ │ │ │ ├── net40 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── net45 │ │ │ └── _._ │ │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+sl4+win8+wp8+wpa81 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+sl4+win8 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+win8+wp8+wpa81 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+win8 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ └── _._ │ │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ │ ├── portable-net451+win81+wpa81 │ │ │ └── _._ │ │ │ ├── portable-net451+win81 │ │ │ └── _._ │ │ │ ├── portable-win81+wp81+wpa81 │ │ │ └── _._ │ │ │ ├── sl4-windowsphone71 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── sl4 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ └── System.Threading.Tasks.xml │ │ │ ├── sl5 │ │ │ ├── System.IO.dll │ │ │ ├── System.IO.xml │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.xml │ │ │ ├── System.Threading.Tasks.dll │ │ │ └── System.Threading.Tasks.xml │ │ │ ├── win8 │ │ │ └── _._ │ │ │ ├── wp8 │ │ │ └── _._ │ │ │ └── wpa81 │ │ │ └── _._ │ │ ├── Microsoft.Bcl.Build.1.0.21 │ │ ├── License-Stable.rtf │ │ ├── Microsoft.Bcl.Build.1.0.21.nupkg │ │ └── build │ │ │ ├── Microsoft.Bcl.Build.Tasks.dll │ │ │ └── Microsoft.Bcl.Build.targets │ │ ├── Microsoft.Net.Http.2.2.28 │ │ ├── License-Stable.rtf │ │ ├── Microsoft.Net.Http.2.2.28.nupkg │ │ └── lib │ │ │ ├── monoandroid │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ │ ├── monotouch │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ │ ├── net40 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.Primitives.xml │ │ │ ├── System.Net.Http.WebRequest.dll │ │ │ ├── System.Net.Http.WebRequest.xml │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── net45 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.Primitives.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.XML │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net45+win8+wpa81 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.Primitives.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── portable-net45+win8 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.Primitives.xml │ │ │ └── ensureRedirect.xml │ │ │ ├── sl4-windowsphone71 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.XML │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ ├── System.Net.Http.dll │ │ │ └── System.Net.Http.xml │ │ │ ├── win8 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ │ └── wpa81 │ │ │ ├── System.Net.Http.Extensions.XML │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ ├── Newtonsoft.Json.6.0.8 │ │ ├── Newtonsoft.Json.6.0.8.nupkg │ │ ├── lib │ │ │ ├── net20 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netcore45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ └── tools │ │ │ └── install.ps1 │ │ ├── WPtoolkit.4.2013.08.16 │ │ ├── WPtoolkit.4.2013.08.16.nupkg │ │ ├── content │ │ │ ├── README_FIRST.txt │ │ │ └── Toolkit.Content │ │ │ │ ├── ApplicationBar.Add.png │ │ │ │ ├── ApplicationBar.Cancel.png │ │ │ │ ├── ApplicationBar.Check.png │ │ │ │ ├── ApplicationBar.Delete.png │ │ │ │ └── ApplicationBar.Select.png │ │ └── lib │ │ │ ├── sl3-wp │ │ │ └── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── sl4-windowsphone71 │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── cs-CZ │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── da-DK │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── de-DE │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── el-GR │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── en-GB │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── es-ES │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fi-FI │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fr-FR │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── hu-HU │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── id-ID │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── it-IT │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ja-JP │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ko-KR │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ms-MY │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── nb-NO │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── nl-NL │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── pl-PL │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── pt-BR │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ru-RU │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sv-SE │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── zh-CN │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ └── zh-TW │ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ └── wp8 │ │ │ ├── Microsoft.Phone.Controls.Toolkit.dll │ │ │ ├── ar-SA │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── az-Latn-AZ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── be-BY │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── bg-BG │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ca-ES │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── cs-CZ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── da-DK │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── de-DE │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── el-GR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── en-GB │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── es-ES │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── es-MX │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── et-EE │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fa-IR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fi-FI │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fil-PH │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fr-CA │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── fr-FR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── he-IL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── hi-IN │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── hr-HR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── hu-HU │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── id-ID │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── it-IT │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ja-JP │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── kk-KZ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ko-KR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── lt-LT │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── lv-LV │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── mk-MK │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ms-MY │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── nb-NO │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── nl-NL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── pl-PL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── pt-BR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── pt-PT │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ro-RO │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── ru-RU │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sk-SK │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sl-SI │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sq-AL │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sr-Latn-CS │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── sv-SE │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── th-TH │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── tr-TR │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── uk-UA │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── uz-Latn-UZ │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── vi-VN │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ ├── zh-CN │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ │ └── zh-TW │ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ │ ├── Xamarin.Android.Support.v4.21.0.3.0 │ │ ├── Xamarin.Android.Support.v4.21.0.3.0.nupkg │ │ └── lib │ │ │ └── MonoAndroid10 │ │ │ └── Xamarin.Android.Support.v4.dll │ │ ├── Xamarin.Forms.1.3.4.6332 │ │ ├── Xamarin.Forms.1.3.4.6332.nupkg │ │ ├── build │ │ │ └── portable-win+net45+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ │ │ ├── Xamarin.Forms.Build.Tasks.dll │ │ │ │ └── Xamarin.Forms.targets │ │ └── lib │ │ │ ├── MonoAndroid10 │ │ │ ├── FormsViewGroup.dll │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.Android.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ │ ├── MonoTouch10 │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.iOS.Classic.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ │ ├── WP80 │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.WP8.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ │ ├── Xamarin.iOS10 │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Platform.iOS.dll │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ │ └── portable-win+net45+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ │ ├── Xamarin.Forms.Core.dll │ │ │ ├── Xamarin.Forms.Core.xml │ │ │ ├── Xamarin.Forms.Xaml.dll │ │ │ └── Xamarin.Forms.Xaml.xml │ │ └── repositories.config ├── MvvmLightDragAndDrop │ ├── External │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.dll │ │ └── System.Windows.Interactivity.dll │ ├── MvvmLightDragAndDrop.sln │ ├── MvvmLightDragAndDrop │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MvvmLightDragAndDrop.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Skins │ │ │ └── MainSkin.xaml │ │ └── ViewModel │ │ │ ├── MainViewModel.cs │ │ │ └── ViewModelLocator.cs │ ├── TestFiles │ │ └── New Text Document.txt │ └── clean-with-scc.bat ├── Navigation │ ├── NavigationDroid.sln │ ├── NavigationDroid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── NavigationDroid.csproj │ │ ├── Page2Activity.cs │ │ ├── Page3Activity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── Page2.axml │ │ │ │ └── Page3.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ └── packages.config │ ├── NavigationIos.sln │ ├── NavigationIos │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewController.xib │ │ ├── NavigationIos.csproj │ │ ├── Page2Controller.cs │ │ ├── Page2Controller.designer.cs │ │ ├── Page2Controller.xib │ │ ├── Page3Controller.cs │ │ ├── Page3Controller.designer.cs │ │ ├── Page3Controller.xib │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ └── Default-568h@2x.png │ │ └── packages.config │ ├── NavigationIosStoryboard.sln │ ├── NavigationIosStoryboard │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewController.storyboard │ │ ├── NavigationIosStoryboard.csproj │ │ ├── Page2Controller.cs │ │ ├── Page2Controller.designer.cs │ │ ├── Page3Controller.cs │ │ ├── Page3Controller.designer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ └── Default-568h@2x.png │ │ └── packages.config │ ├── clean.bat │ └── packages │ │ ├── CommonServiceLocator.1.3 │ │ ├── CommonServiceLocator.1.3.nupkg │ │ └── lib │ │ │ └── portable-net4+sl5+netcore45+wpa81+wp8 │ │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ │ └── Microsoft.Practices.ServiceLocation.dll │ │ ├── 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 └── RaiseCanExecuteChanged │ ├── External │ ├── Silverlight │ │ └── GalaSoft.MvvmLight.dll │ └── WPF │ │ ├── GalaSoft.MvvmLight.dll │ │ └── WPFToolkit.dll │ ├── RaiseCanExecuteChanged.SL │ ├── App.xaml │ ├── App.xaml.cs │ ├── GalaSoft.Samples.RaiseCanExecuteChanged.SL.csproj │ ├── GalaSoft.Samples.RaiseCanExecuteChanged.SL.snk │ ├── License.txt │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ └── Skins │ │ └── MainSkin.xaml │ ├── RaiseCanExecuteChanged.sln │ ├── RaiseCanExecuteChanged │ ├── App.xaml │ ├── App.xaml.cs │ ├── GalaSoft.Samples.RaiseCanExecuteChanged.csproj │ ├── GalaSoft.Samples.RaiseCanExecuteChanged.snk │ ├── GalaSoft.ico │ ├── License.txt │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings.StyleCop │ ├── Skins │ │ └── MainSkin.xaml │ └── ViewModel │ │ ├── MainViewModel.cs │ │ └── ViewModelLocator.cs │ └── clean-with-scc.bat ├── Templates └── CSharp │ ├── ItemTemplates │ ├── View.SL │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.SL.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── View.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.WP7.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── View.WP8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.WP8.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── View.WPF │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.WPF.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── View.Win8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.Win8.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── View.Win81 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── View.Win81.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ ├── Vm.SL │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.SL.vstemplate │ ├── Vm.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.WP7.vstemplate │ ├── Vm.WP8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.WP8.vstemplate │ ├── Vm.WPF │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.WPF.vstemplate │ ├── Vm.Win8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.Win8.vstemplate │ ├── Vm.Win81 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelTemplate.cs │ │ └── Vm.Win81.vstemplate │ ├── Vml.SL │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.SL.vstemplate │ ├── Vml.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.WP7.vstemplate │ ├── Vml.WP8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.WP8.vstemplate │ ├── Vml.WPF │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.WPF.vstemplate │ ├── Vml.Win8 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.Win8.vstemplate │ └── Vml.Win81 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocatorTemplate.cs │ │ └── Vml.Win81.vstemplate │ └── ProjectTemplates │ ├── VS2012 │ ├── Make-Templates.ps1 │ ├── Mvvm.Droid │ │ ├── AboutAssets.txt │ │ ├── AboutResources.txt │ │ ├── AndroidManifest.xml │ │ ├── App.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── Icon.png │ │ ├── Main.axml │ │ ├── MainActivity.cs │ │ ├── MainActivity.ui.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.Droid.csproj │ │ ├── Mvvm.Droid.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resource.Designer.cs │ │ ├── Second.axml │ │ ├── SecondActivity.cs │ │ ├── SecondActivity.ui.cs │ │ ├── Strings.xml │ │ └── ViewModelLocator.cs │ ├── Mvvm.SL4 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.SL4.csproj │ │ ├── Mvvm.SL4.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ ├── Mvvm.SL5 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.SL5.csproj │ │ ├── Mvvm.SL5.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ ├── Mvvm.WP71 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── ApplicationIcon.jpg │ │ ├── AssemblyInfo.cs │ │ ├── Background.jpg │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.WP71.csproj │ │ ├── Mvvm.WP71.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── ViewModelLocator.cs │ │ └── WMAppManifest.xml │ ├── Mvvm.WP8 │ │ ├── AlignmentGrid.png │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AppResources.Designer.cs │ │ ├── AppResources.resx │ │ ├── ApplicationIcon.png │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IDataService.cs │ │ ├── IconicTileMediumLarge.png │ │ ├── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.WP8.csproj │ │ ├── Mvvm.WP8.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocator.cs │ │ └── WMAppManifest.xml │ ├── Mvvm.WPF35 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF35.csproj │ │ ├── Mvvm.WPF35.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.WPF4 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF4.csproj │ │ ├── Mvvm.WPF4.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.WPF45 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF45.csproj │ │ ├── Mvvm.WPF45.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.Win8 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── LayoutAwarePage.cs │ │ ├── Logo.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.Win8.csproj │ │ ├── Mvvm.Win8.vstemplate │ │ ├── MvvmLight.Win8_TemporaryKey.pfx │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Package.appxmanifest │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ ├── StandardStyles.xaml │ │ ├── StoreLogo.png │ │ ├── SuspensionManager.cs │ │ └── ViewModelLocator.cs │ └── Mvvm.iPhone │ │ ├── AppDelegate.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── Default-568h@2x.png │ │ ├── DesignDataService.cs │ │ ├── Entitlements.plist │ │ ├── IDataService.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewModel.cs │ │ ├── Main_iPhone.storyboard │ │ ├── Mvvm.iPhone.csproj │ │ ├── Mvvm.iPhone.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── SecondViewController.cs │ │ ├── SecondViewController.designer.cs │ │ └── ViewModelLocator.cs │ ├── VS2013 │ ├── Make-Templates.ps1 │ ├── Mvvm.Droid │ │ ├── AboutAssets.txt │ │ ├── AboutResources.txt │ │ ├── AndroidManifest.xml │ │ ├── App.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── Icon.png │ │ ├── Main.axml │ │ ├── MainActivity.cs │ │ ├── MainActivity.ui.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.Droid.csproj │ │ ├── Mvvm.Droid.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resource.Designer.cs │ │ ├── Second.axml │ │ ├── SecondActivity.cs │ │ ├── SecondActivity.ui.cs │ │ ├── Strings.xml │ │ └── ViewModelLocator.cs │ ├── Mvvm.SL5 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.SL5.csproj │ │ ├── Mvvm.SL5.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ ├── Mvvm.WP8 │ │ ├── AlignmentGrid.png │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AppResources.Designer.cs │ │ ├── AppResources.resx │ │ ├── ApplicationIcon.png │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IDataService.cs │ │ ├── IconicTileMediumLarge.png │ │ ├── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.WP8.csproj │ │ ├── Mvvm.WP8.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── ViewModelLocator.cs │ │ └── WMAppManifest.xml │ ├── Mvvm.WP81 │ │ ├── AlignmentGrid.png │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AppResources.Designer.cs │ │ ├── AppResources.resx │ │ ├── ApplicationIcon.png │ │ ├── AssemblyInfo.cs │ │ ├── BadgeLogo.png │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IDataService.cs │ │ ├── IconicTileMediumLarge.png │ │ ├── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── Logo.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainViewModel.cs │ │ ├── Mvvm.WP81.csproj │ │ ├── Mvvm.WP81.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Package.appxmanifest │ │ ├── SplashScreen.png │ │ ├── SquareTile150x150.png │ │ ├── SquareTile71x71.png │ │ ├── StoreLogo.png │ │ ├── ViewModelLocator.cs │ │ ├── WMAppManifest.xml │ │ └── WideLogo.png │ ├── Mvvm.WPA81 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── ButtonStyles.xaml │ │ ├── Colors.xaml │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── Logo.scale-240.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainStyles.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.Wpa81.csproj │ │ ├── Mvvm.Wpa81.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Package.appxmanifest │ │ ├── SecondPage.xaml │ │ ├── SecondPage.xaml.cs │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ ├── TextStyles.xaml │ │ ├── ViewModelLocator.cs │ │ └── WideLogo.scale-240.png │ ├── Mvvm.WPF35 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF35.csproj │ │ ├── Mvvm.WPF35.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.WPF4 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF4.csproj │ │ ├── Mvvm.WPF4.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.WPF45 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF45.csproj │ │ ├── Mvvm.WPF45.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.WPF451 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── IDataService.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Mvvm.WPF451.csproj │ │ ├── Mvvm.WPF451.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ ├── Mvvm.Win81 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── DesignDataService.cs │ │ ├── DisplayOrientationsHelper.cs │ │ ├── IDataService.cs │ │ ├── Logo.scale-100.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── Mvvm.Win81.csproj │ │ ├── Mvvm.Win81.vstemplate │ │ ├── MvvmLight.Win81_TemporaryKey.pfx │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── NavigationHelper.cs │ │ ├── OrientationStateBehavior.cs │ │ ├── OrientationStateControlBehavior.cs │ │ ├── OrientationStateMessage.cs │ │ ├── Package.appxmanifest │ │ ├── PageBase.cs │ │ ├── PageOrientations.cs │ │ ├── Resources.resw │ │ ├── SecondPage.xaml │ │ ├── SecondPage.xaml.cs │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ ├── SuspensionManager.cs │ │ ├── TestUserControl.xaml │ │ ├── TestUserControl.xaml.cs │ │ ├── UserControlBase.cs │ │ └── ViewModelLocator.cs │ └── Mvvm.iPhone │ │ ├── AppDelegate.cs │ │ ├── AssemblyInfo.cs │ │ ├── DataItem.cs │ │ ├── DataService.cs │ │ ├── Default-568h@2x.png │ │ ├── DesignDataService.cs │ │ ├── Entitlements.plist │ │ ├── IDataService.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainViewController.cs │ │ ├── MainViewController.designer.cs │ │ ├── MainViewModel.cs │ │ ├── Main_iPhone.storyboard │ │ ├── Mvvm.iPhone.csproj │ │ ├── Mvvm.iPhone.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── SecondViewController.cs │ │ ├── SecondViewController.designer.cs │ │ └── ViewModelLocator.cs │ └── VS2015 │ ├── Make-Templates.ps1 │ ├── Mvvm.Droid │ ├── AboutAssets.txt │ ├── AboutResources.txt │ ├── AndroidManifest.xml │ ├── App.cs │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── IDataService.cs │ ├── Icon.png │ ├── Main.axml │ ├── MainActivity.cs │ ├── MainActivity.ui.cs │ ├── MainViewModel.cs │ ├── Mvvm.Droid.csproj │ ├── Mvvm.Droid.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Resource.Designer.cs │ ├── Second.axml │ ├── SecondActivity.cs │ ├── SecondActivity.ui.cs │ ├── Strings.xml │ └── ViewModelLocator.cs │ ├── Mvvm.SL5 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── IDataService.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainSkin.xaml │ ├── MainViewModel.cs │ ├── Mvvm.SL5.csproj │ ├── Mvvm.SL5.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── ViewModelLocator.cs │ ├── Mvvm.WP8 │ ├── AlignmentGrid.png │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppManifest.xml │ ├── AppResources.Designer.cs │ ├── AppResources.resx │ ├── ApplicationIcon.png │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── FlipCycleTileLarge.png │ ├── FlipCycleTileMedium.png │ ├── FlipCycleTileSmall.png │ ├── IDataService.cs │ ├── IconicTileMediumLarge.png │ ├── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainViewModel.cs │ ├── Mvvm.WP8.csproj │ ├── Mvvm.WP8.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── ViewModelLocator.cs │ └── WMAppManifest.xml │ ├── Mvvm.WP81 │ ├── AlignmentGrid.png │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppManifest.xml │ ├── AppResources.Designer.cs │ ├── AppResources.resx │ ├── ApplicationIcon.png │ ├── AssemblyInfo.cs │ ├── BadgeLogo.png │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── FlipCycleTileLarge.png │ ├── FlipCycleTileMedium.png │ ├── FlipCycleTileSmall.png │ ├── IDataService.cs │ ├── IconicTileMediumLarge.png │ ├── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── Logo.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainViewModel.cs │ ├── Mvvm.WP81.csproj │ ├── Mvvm.WP81.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Package.appxmanifest │ ├── SplashScreen.png │ ├── SquareTile150x150.png │ ├── SquareTile71x71.png │ ├── StoreLogo.png │ ├── ViewModelLocator.cs │ ├── WMAppManifest.xml │ └── WideLogo.png │ ├── Mvvm.WPA81 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── ButtonStyles.xaml │ ├── Colors.xaml │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── IDataService.cs │ ├── Logo.scale-240.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainStyles.xaml │ ├── MainViewModel.cs │ ├── Mvvm.Wpa81.csproj │ ├── Mvvm.Wpa81.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Package.appxmanifest │ ├── SecondPage.xaml │ ├── SecondPage.xaml.cs │ ├── SmallLogo.scale-240.png │ ├── SplashScreen.scale-240.png │ ├── Square71x71Logo.scale-240.png │ ├── StoreLogo.scale-240.png │ ├── TextStyles.xaml │ ├── ViewModelLocator.cs │ └── WideLogo.scale-240.png │ ├── Mvvm.WPF451 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── IDataService.cs │ ├── MainSkin.xaml │ ├── MainViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Mvvm.WPF451.csproj │ ├── Mvvm.WPF451.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── ViewModelLocator.cs │ ├── Mvvm.Win10Univ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── Default.rd.xml │ ├── DesignDataService.cs │ ├── IDataService.cs │ ├── LockScreenLogo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainViewModel.cs │ ├── Mvvm.Win10Univ.csproj │ ├── Mvvm.Win10Univ.vstemplate │ ├── MvvmLight.ico │ ├── Package.appxmanifest │ ├── SecondPage.xaml │ ├── SecondPage.xaml.cs │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── ViewModelLocator.cs │ ├── Wide310x150Logo.scale-200.png │ ├── Win10_TemporaryKey.pfx │ └── project.json │ ├── Mvvm.Win81 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── DesignDataService.cs │ ├── DisplayOrientationsHelper.cs │ ├── IDataService.cs │ ├── Logo.scale-100.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainSkin.xaml │ ├── MainViewModel.cs │ ├── Mvvm.Win81.csproj │ ├── Mvvm.Win81.vstemplate │ ├── MvvmLight.Win81_TemporaryKey.pfx │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── NavigationHelper.cs │ ├── OrientationStateBehavior.cs │ ├── OrientationStateControlBehavior.cs │ ├── OrientationStateMessage.cs │ ├── Package.appxmanifest │ ├── PageBase.cs │ ├── PageOrientations.cs │ ├── Resources.resw │ ├── SecondPage.xaml │ ├── SecondPage.xaml.cs │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── StoreLogo.scale-100.png │ ├── SuspensionManager.cs │ ├── TestUserControl.xaml │ ├── TestUserControl.xaml.cs │ ├── UserControlBase.cs │ └── ViewModelLocator.cs │ └── Mvvm.iPhone │ ├── AppDelegate.cs │ ├── AssemblyInfo.cs │ ├── DataItem.cs │ ├── DataService.cs │ ├── Default-568h@2x.png │ ├── DesignDataService.cs │ ├── Entitlements.plist │ ├── IDataService.cs │ ├── Info.plist │ ├── Main.cs │ ├── MainViewController.cs │ ├── MainViewController.designer.cs │ ├── MainViewModel.cs │ ├── Main_iPhone.storyboard │ ├── Mvvm.iPhone.csproj │ ├── Mvvm.iPhone.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── SecondViewController.cs │ ├── SecondViewController.designer.cs │ └── ViewModelLocator.cs ├── V3 ├── GalaSoft.MvvmLight │ ├── .hgignore │ ├── External │ │ ├── NET35 │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ ├── NET4 │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ ├── SL3 │ │ │ ├── Microsoft.Silverlight.Testing.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ ├── SL4 │ │ │ ├── Microsoft.Silverlight.Testing.dll │ │ │ ├── Microsoft.Silverlight.Testing.xml │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ ├── SL5 │ │ │ ├── Microsoft.Silverlight.Testing.dll │ │ │ ├── Microsoft.Silverlight.Testing.xml │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ ├── WP7 │ │ │ ├── Microsoft.Silverlight.Testing.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ └── WP71 │ │ │ ├── Microsoft.Silverlight.Testing.dll │ │ │ ├── Microsoft.Silverlight.Testing.xml │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ ├── GalaSoft.MvvmLight (NET35).sln │ ├── GalaSoft.MvvmLight (NET35) │ │ ├── Command │ │ │ ├── RelayCommand.cs │ │ │ └── RelayCommandGeneric.cs │ │ ├── GalaSoft.MvvmLight (NET35).csproj │ │ ├── GalaSoft.MvvmLight (NET35).snk │ │ ├── GalaSoft.MvvmLight.FxCop │ │ ├── Helpers │ │ │ ├── IExecuteWithObject.cs │ │ │ ├── WeakAction.cs │ │ │ └── WeakActionGeneric.cs │ │ ├── ICleanup.cs │ │ ├── License.txt │ │ ├── Messaging │ │ │ ├── DialogMessage.cs │ │ │ ├── GenericMessage.cs │ │ │ ├── IMessenger.cs │ │ │ ├── MessageBase.cs │ │ │ ├── Messenger.cs │ │ │ ├── NotificationMessage.cs │ │ │ ├── NotificationMessageAction.cs │ │ │ ├── NotificationMessageActionGeneric.cs │ │ │ ├── NotificationMessageGeneric.cs │ │ │ ├── NotificationMessageWithCallback.cs │ │ │ ├── PropertyChangedMessage.cs │ │ │ └── PropertyChangedMessageBase.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.Net35.cs │ │ │ └── AssemblyInfo.cs │ │ ├── Settings.StyleCop │ │ └── ViewModelBase.cs │ ├── GalaSoft.MvvmLight (NET4).sln │ ├── GalaSoft.MvvmLight (NET4) │ │ ├── GalaSoft.MvvmLight (NET4).csproj │ │ ├── GalaSoft.MvvmLight (NET4).snk │ │ ├── GalaSoft.MvvmLight.FxCop │ │ ├── GalaSoft.MvvmLight.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.Net4.cs │ │ └── Settings.StyleCop │ ├── GalaSoft.MvvmLight (SL3).sln │ ├── GalaSoft.MvvmLight (SL3) │ │ ├── Command │ │ │ ├── ButtonBaseExtensions.cs │ │ │ └── CommandToButtonsMap.cs │ │ ├── GalaSoft.MvvmLight (SL3).csproj │ │ ├── GalaSoft.MvvmLight (SL3).snk │ │ ├── Properties │ │ │ └── AssemblyInfo.SL3.cs │ │ └── Settings.StyleCop │ ├── GalaSoft.MvvmLight (SL4).sln │ ├── GalaSoft.MvvmLight (SL4) │ │ ├── GalaSoft.MvvmLight (SL4).csproj │ │ ├── GalaSoft.MvvmLight (SL4).snk │ │ ├── GalaSoft.MvvmLight.SL.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.SL4.cs │ │ └── Settings.StyleCop │ ├── GalaSoft.MvvmLight (SL5).sln │ ├── GalaSoft.MvvmLight (SL5) │ │ ├── GalaSoft.MvvmLight (SL5).csproj │ │ ├── GalaSoft.MvvmLight.SL5.snk │ │ └── Properties │ │ │ └── AssemblyInfo.SL5.cs │ ├── GalaSoft.MvvmLight (WP7).sln │ ├── GalaSoft.MvvmLight (WP7) │ │ ├── GalaSoft.MvvmLight (WP7).csproj │ │ └── Properties │ │ │ └── AssemblyInfo.WP7.cs │ ├── GalaSoft.MvvmLight (WP71).sln │ ├── GalaSoft.MvvmLight (WP71) │ │ ├── GalaSoft.MvvmLight (WP71).csproj │ │ └── Properties │ │ │ └── AssemblyInfo.WP71.cs │ ├── GalaSoft.MvvmLight.Extras (NET35) │ │ ├── Command │ │ │ ├── EventToCommand.WPF.cs │ │ │ └── EventToCommand.cs │ │ ├── GalaSoft.MvvmLight.Extras (NET35).csproj │ │ ├── GalaSoft.MvvmLight.Extras.snk │ │ ├── Properties │ │ │ ├── AssemblyInfo.Net35.cs │ │ │ └── AssemblyInfo.cs │ │ ├── Settings.StyleCop │ │ └── Threading │ │ │ └── DispatcherHelper.cs │ ├── GalaSoft.MvvmLight.Extras (NET4) │ │ ├── Command │ │ │ └── EventToCommandVS10.cs │ │ ├── GalaSoft.MvvmLight.Extras (NET4).csproj │ │ ├── GalaSoft.MvvmLight.Extras (NET4).snk │ │ ├── GalaSoft.MvvmLight.Extras.snk │ │ └── Properties │ │ │ └── AssemblyInfo.Net4.cs │ ├── GalaSoft.MvvmLight.Extras (SL3) │ │ ├── Command │ │ │ └── EventToCommand.SL.cs │ │ ├── GalaSoft.MvvmLight.Extras (SL).snk │ │ ├── GalaSoft.MvvmLight.Extras (SL3).csproj │ │ ├── Helpers │ │ │ └── BindingListener.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.SL3.cs │ │ └── Settings.StyleCop │ ├── GalaSoft.MvvmLight.Extras (SL4) │ │ ├── GalaSoft.MvvmLight.Extras (SL4).csproj │ │ ├── GalaSoft.MvvmLight.Extras (SL4).snk │ │ ├── GalaSoft.MvvmLight.Extras.SL.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.SL4.cs │ │ └── Settings.StyleCop │ ├── GalaSoft.MvvmLight.Extras (SL5) │ │ ├── GalaSoft.MvvmLight.Extras (SL5).csproj │ │ ├── GalaSoft.MvvmLight.Extras.SL5.snk │ │ └── Properties │ │ │ └── AssemblyInfo.SL5.cs │ ├── GalaSoft.MvvmLight.Extras (WP7) │ │ ├── GalaSoft.MvvmLight.Extras (WP7).csproj │ │ └── Properties │ │ │ └── AssemblyInfo.WP7.cs │ ├── GalaSoft.MvvmLight.Extras (WP71) │ │ ├── GalaSoft.MvvmLight.Extras (WP71).csproj │ │ └── Properties │ │ │ └── AssemblyInfo.WP71.cs │ ├── GalaSoft.MvvmLight.Test (NET35) │ │ ├── Command │ │ │ ├── EventToCommandTest.cs │ │ │ ├── RelayCommandGenericTest.cs │ │ │ └── RelayCommandTest.cs │ │ ├── GalaSoft.MvvmLight.Test (NET35).csproj │ │ ├── Messaging │ │ │ ├── DialogMessageTest.cs │ │ │ ├── MessengerBroadcastToAllTest.cs │ │ │ ├── MessengerCreationDeletionTest.cs │ │ │ ├── MessengerMultipleInstancesTest.cs │ │ │ ├── MessengerOverrideDefaultTest.cs │ │ │ ├── MessengerRegisterUnregisterTest.cs │ │ │ ├── MessengerRegisterWhileSendingTest.cs │ │ │ ├── MessengerSendToAllTest.cs │ │ │ ├── MessengerSendToTypeTest.cs │ │ │ ├── MessengerSendWithTokenTest.cs │ │ │ ├── NotificationMessageActionTest.cs │ │ │ ├── NotificationMessageFuncTest.cs │ │ │ ├── NotificationMessageTest.cs │ │ │ └── PropertyChangedMessageTest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Threading │ │ │ └── TestDispatcherHelper.cs │ │ └── ViewModelBaseTest.cs │ ├── GalaSoft.MvvmLight.Test (NET4) │ │ ├── Command │ │ │ └── EventToCommandTest.cs │ │ ├── GalaSoft.MvvmLight.Test (NET4).csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GalaSoft.MvvmLight.Test (SL3) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GalaSoft.MvvmLight.Test (SL3).csproj │ │ └── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ ├── GalaSoft.MvvmLight.Test (SL4) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GalaSoft.MvvmLight.Test (SL4).csproj │ │ └── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ ├── GalaSoft.MvvmLight.Test (SL5) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GalaSoft.MvvmLight.Test (SL5).csproj │ │ └── Properties │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ ├── GalaSoft.MvvmLight.Test (WP71) │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ApplicationIcon.png │ │ ├── Background.png │ │ ├── GalaSoft.MvvmLight.Test (WP71).csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ └── SplashScreenImage.jpg │ ├── GalaSoft.MvvmLight.sln │ ├── GalaSoft.MvvmLight.vsmdi │ ├── GalaSoft.MvvmLight1.vsmdi │ ├── LocalTestRun.testrunconfig │ ├── clean-with-scc.bat │ ├── clean.bat │ └── gatherbinaries.bat ├── Installer │ ├── InstallItems │ │ ├── GalaSoft.MvvmLight.Snippets │ │ │ └── CSharp │ │ │ │ ├── mvvmInpcProperty.snippet │ │ │ │ ├── mvvmPropA.snippet │ │ │ │ ├── mvvmPropDP.snippet │ │ │ │ ├── mvvmSLPropA.snippet │ │ │ │ ├── mvvmSLPropDP.snippet │ │ │ │ └── mvvmViewModelLocatorProperty.snippet │ │ └── GalaSoft.MvvmLight.Templates │ │ │ ├── ItemTemplates │ │ │ ├── Silverlight │ │ │ │ ├── MvvmView.SL.zip │ │ │ │ ├── MvvmViewModel.SL.zip │ │ │ │ └── MvvmViewModelLocator.SL.zip │ │ │ ├── WPF │ │ │ │ ├── MvvmView.WPF.zip │ │ │ │ ├── MvvmViewModel.WPF.zip │ │ │ │ └── MvvmViewModelLocator.WPF.zip │ │ │ └── WindowsPhone │ │ │ │ ├── MvvmView.WP7.zip │ │ │ │ ├── MvvmViewModel.WP7.zip │ │ │ │ └── MvvmViewModelLocator.WP7.zip │ │ │ └── ProjectTemplates │ │ │ ├── Silverlight │ │ │ ├── MvvmLight.SL.zip │ │ │ ├── MvvmLight.SL4.zip │ │ │ └── MvvmLight.SL5.zip │ │ │ ├── WPF │ │ │ ├── MvvmLight.WPF.zip │ │ │ └── MvvmLight.WPF4.zip │ │ │ └── WindowsPhone │ │ │ ├── MvvmLight.WP7.zip │ │ │ └── MvvmLight.WP71.zip │ ├── Installer.sln │ ├── Installer │ │ ├── .docstates │ │ ├── Installer.wixproj │ │ ├── License.rtf │ │ ├── MVVM_Original_195x100.png │ │ ├── Product.wxs │ │ ├── WixUIBannerBmp.bmp │ │ └── WixUIDialogBmp.bmp │ ├── ModifyRegistryKey │ │ ├── ModifyRegistryKey.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── clean.bat ├── NuGet │ ├── MvvmLight.3.0.3.nupkg │ ├── MvvmLight.3.1.1.nupkg │ ├── MvvmLightLibs.3.0.3.nupkg │ ├── MvvmLightLibs.3.1.1.nupkg │ ├── V3Full │ │ ├── Content │ │ │ ├── App.xaml.transform │ │ │ └── ViewModel │ │ │ │ ├── MainViewModel.cs.pp │ │ │ │ └── ViewModelLocator.cs.pp │ │ ├── MvvmLight.V3.nuspec │ │ └── lib │ │ │ ├── SL3 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── SL4 │ │ │ ├── GalaSoft.MvvmLight.Extras.SL4.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.SL4.dll │ │ │ ├── GalaSoft.MvvmLight.SL4.XML │ │ │ ├── GalaSoft.MvvmLight.SL4.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── SL5 │ │ │ ├── GalaSoft.MvvmLight.Extras.SL5.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.SL5.xml │ │ │ ├── GalaSoft.MvvmLight.SL5.dll │ │ │ ├── GalaSoft.MvvmLight.SL5.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── net35 │ │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ │ ├── GalaSoft.MvvmLight.XML │ │ │ ├── GalaSoft.MvvmLight.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── net40 │ │ │ ├── GalaSoft.MvvmLight.Extras.WPF4.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.WPF4.dll │ │ │ ├── GalaSoft.MvvmLight.WPF4.XML │ │ │ ├── GalaSoft.MvvmLight.WPF4.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ ├── sl3-wp │ │ │ ├── GalaSoft.MvvmLight.Extras.WP7.XML │ │ │ ├── GalaSoft.MvvmLight.Extras.WP7.dll │ │ │ ├── GalaSoft.MvvmLight.WP7.XML │ │ │ ├── GalaSoft.MvvmLight.WP7.dll │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ │ │ └── sl4-windowsphone71 │ │ │ ├── GalaSoft.MvvmLight.Extras.WP71.dll │ │ │ ├── GalaSoft.MvvmLight.Extras.WP71.xml │ │ │ ├── GalaSoft.MvvmLight.WP71.dll │ │ │ ├── GalaSoft.MvvmLight.WP71.xml │ │ │ ├── System.Windows.Interactivity.dll │ │ │ └── System.Windows.Interactivity.xml │ └── V3Libs │ │ ├── MvvmLightLibs.V3.nuspec │ │ └── lib │ │ ├── SL3 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── SL4 │ │ ├── GalaSoft.MvvmLight.Extras.SL4.XML │ │ ├── GalaSoft.MvvmLight.Extras.SL4.dll │ │ ├── GalaSoft.MvvmLight.SL4.XML │ │ ├── GalaSoft.MvvmLight.SL4.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── SL5 │ │ ├── GalaSoft.MvvmLight.Extras.SL5.dll │ │ ├── GalaSoft.MvvmLight.Extras.SL5.xml │ │ ├── GalaSoft.MvvmLight.SL5.dll │ │ ├── GalaSoft.MvvmLight.SL5.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net35 │ │ ├── GalaSoft.MvvmLight.Extras.XML │ │ ├── GalaSoft.MvvmLight.Extras.dll │ │ ├── GalaSoft.MvvmLight.XML │ │ ├── GalaSoft.MvvmLight.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── net40 │ │ ├── GalaSoft.MvvmLight.Extras.WPF4.XML │ │ ├── GalaSoft.MvvmLight.Extras.WPF4.dll │ │ ├── GalaSoft.MvvmLight.WPF4.XML │ │ ├── GalaSoft.MvvmLight.WPF4.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ ├── sl3-wp │ │ ├── GalaSoft.MvvmLight.Extras.WP7.XML │ │ ├── GalaSoft.MvvmLight.Extras.WP7.dll │ │ ├── GalaSoft.MvvmLight.WP7.XML │ │ ├── GalaSoft.MvvmLight.WP7.dll │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ │ └── sl4-windowsphone71 │ │ ├── GalaSoft.MvvmLight.Extras.WP71.dll │ │ ├── GalaSoft.MvvmLight.Extras.WP71.xml │ │ ├── GalaSoft.MvvmLight.WP71.dll │ │ ├── GalaSoft.MvvmLight.WP71.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml ├── Snippets │ └── VB │ │ ├── mvvmInpcProperty_VB.snippet │ │ ├── mvvmPropA_VB.snippet │ │ ├── mvvmPropDP_VB.snippet │ │ ├── mvvmSLPropA_VB.snippet │ │ ├── mvvmSLPropDP_VB.snippet │ │ └── mvvmViewModelLocatorProperty_VB.snippet └── Templates │ ├── ItemTemplates │ ├── Silverlight │ │ ├── MvvmView.SL │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmView.SL.vstemplate │ │ │ ├── ViewTemplate.xaml │ │ │ └── ViewTemplate.xaml.cs │ │ ├── MvvmViewModel.SL │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmViewModel.SL.vstemplate │ │ │ └── ViewModelTemplate.cs │ │ └── MvvmViewModelLocator.SL │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmViewModelLocator.SL.vstemplate │ │ │ └── ViewModelLocatorTemplate.cs │ ├── WPF │ │ ├── MvvmView.WPF │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmView.WPF.vstemplate │ │ │ ├── ViewTemplate.xaml │ │ │ └── ViewTemplate.xaml.cs │ │ ├── MvvmViewModel.WPF │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmViewModel.WPF.vstemplate │ │ │ └── ViewModelTemplate.cs │ │ └── MvvmViewModelLocator.WPF │ │ │ ├── MvvmLight.ico │ │ │ ├── MvvmLight.png │ │ │ ├── MvvmViewModelLocator.WPF.vstemplate │ │ │ └── ViewModelLocatorTemplate.cs │ └── WindowsPhone │ │ ├── MvvmView.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── MvvmView.WP7.vstemplate │ │ ├── ViewTemplate.xaml │ │ └── ViewTemplate.xaml.cs │ │ ├── MvvmViewModel.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── MvvmViewModel.WP7.vstemplate │ │ └── ViewModelTemplate.cs │ │ └── MvvmViewModelLocator.WP7 │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── MvvmViewModelLocator.WP7.vstemplate │ │ └── ViewModelLocatorTemplate.cs │ └── ProjectTemplates │ ├── Silverlight │ ├── MvvmLight.SL │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MvvmLight.SL.csproj │ │ ├── MvvmLight.SL.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ ├── MvvmLight.SL4 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MvvmLight.SL4.csproj │ │ ├── MvvmLight.SL4.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ └── MvvmLight.SL5 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MvvmLight.SL5.csproj │ │ ├── MvvmLight.SL5.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── ViewModelLocator.cs │ ├── WPF │ ├── MvvmLight.WPF │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MvvmLight.WPF.csproj │ │ ├── MvvmLight.WPF.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ └── MvvmLight.WPF4 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainSkin.xaml │ │ ├── MainViewModel.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MvvmLight.WPF4.csproj │ │ ├── MvvmLight.WPF4.vstemplate │ │ ├── MvvmLight.ico │ │ ├── MvvmLight.png │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── ViewModelLocator.cs │ └── WindowsPhone │ ├── MvvmLight.WP7 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppManifest.xml │ ├── ApplicationIcon.png │ ├── AssemblyInfo.cs │ ├── Background.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainViewModel.cs │ ├── MvvmLight.WP7.csproj │ ├── MvvmLight.WP7.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SplashScreenImage.jpg │ ├── ViewModelLocator.cs │ └── WMAppManifest.xml │ └── MvvmLight.WP71 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppManifest.xml │ ├── ApplicationIcon.jpg │ ├── AssemblyInfo.cs │ ├── Background.jpg │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MainViewModel.cs │ ├── MvvmLight.WP71.csproj │ ├── MvvmLight.WP71.vstemplate │ ├── MvvmLight.ico │ ├── MvvmLight.png │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SplashScreenImage.jpg │ ├── ViewModelLocator.cs │ └── WMAppManifest.xml ├── clean-with-scc.bat └── clean.bat /GalaSoft.MvvmLight/External/NET35/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/NET35/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/NET45/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/NET45/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/SL4/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/SL4/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WP71/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WP71/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WPA81/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WPA81/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WPSL80/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WPSL80/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/External/WPSL81/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/External/WPSL81/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/GalaSoft.MvvmLight (PCL).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/GalaSoft.MvvmLight (PCL).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/Helpers/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/Helpers/Empty.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight (SL5).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight (SL5).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (PCL)/GalaSoft.MvvmLight.Extras (PCL).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (PCL)/GalaSoft.MvvmLight.Extras (PCL).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras (SL4).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras (SL4).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/GalaSoft.MvvmLight.Extras (SL5).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/GalaSoft.MvvmLight.Extras (SL5).snk -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingGeneric.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingMode.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/ObservableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/ObservableAdapter.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Views/ActivityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Views/ActivityBase.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (NET45)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WP81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WPSL80)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WPSL81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/DialogService.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/NavigationService.cs -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (NET4)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (SL5)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/Background.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PNET45)/Helpers/CommonTestClass.cs: -------------------------------------------------------------------------------- 1 | using GalaSoft.MvvmLight.Helpers; 2 | 3 | namespace GalaSoft.MvvmLight.Test.Helpers 4 | { 5 | public class CommonTestClass 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PNET45)/Stubs/ITestClass.cs: -------------------------------------------------------------------------------- 1 | namespace GalaSoft.MvvmLight.Test.Stubs 2 | { 3 | public interface ITestClass 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PNET45)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/BadgeLogo.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Logo.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SplashScreen.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/StoreLogo.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/WideLogo.png -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /GalaSoft.MvvmLight/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/GalaSoft.MvvmLight/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg -------------------------------------------------------------------------------- /Installer/InstallItems/Nuget/CommonServiceLocator.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Nuget/CommonServiceLocator.1.0.nupkg -------------------------------------------------------------------------------- /Installer/InstallItems/Nuget/CommonServiceLocator.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Nuget/CommonServiceLocator.1.3.nupkg -------------------------------------------------------------------------------- /Installer/InstallItems/Nuget/MvvmLight.5.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Nuget/MvvmLight.5.2.0.0.nupkg -------------------------------------------------------------------------------- /Installer/InstallItems/Nuget/MvvmLightLibs.5.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Nuget/MvvmLightLibs.5.2.0.0.nupkg -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.SL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.SL.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.WP7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.WP7.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.WPF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.WPF.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.Win8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.Win8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/View.Win81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/View.Win81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.SL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.SL.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.WP7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.WP7.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.WPF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.WPF.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.Win8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.Win8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vm.Win81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vm.Win81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.SL.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.SL.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.WP7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.WP7.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.WPF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.WPF.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.Win8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.Win8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ItemTemplates/Vml.Win81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ItemTemplates/Vml.Win81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Droid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Droid.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL4.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL5.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP71.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP71.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF35.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF4.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF45.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF45.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Win8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Win8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.iPhone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.iPhone.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Droid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Droid.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.SL5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.SL5.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPA81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPA81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF35.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF35.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF4.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF45.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF45.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF451.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF451.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Win81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Win81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.iPhone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.iPhone.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Droid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Droid.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.SL5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.SL5.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP8.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPA81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPA81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPF451.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPF451.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win10Univ.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win10Univ.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win81.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win81.zip -------------------------------------------------------------------------------- /Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.iPhone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.iPhone.zip -------------------------------------------------------------------------------- /Installer/StandardVSIX/Assets/Icon Purple 100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/Assets/Icon Purple 100x100.png -------------------------------------------------------------------------------- /Installer/StandardVSIX/Assets/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/Assets/MvvmLight.png -------------------------------------------------------------------------------- /Installer/StandardVSIX/Assets/MvvmLightCSharpSnippets.pkgdef: -------------------------------------------------------------------------------- 1 | [$RootKey$\Languages\CodeExpansions\CSharp\Paths] 2 | "MvvmLightCSharpSnippets"="$PackageFolder$" -------------------------------------------------------------------------------- /Installer/StandardVSIX/Assets/MvvmLightVbSnippets.pkgdef: -------------------------------------------------------------------------------- 1 | [$RootKey$\Languages\CodeExpansions\Basic\Paths] 2 | "MvvmLightVbSnippets"="$PackageFolder$" -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2010/Icon Purple 100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2010/Icon Purple 100x100.png -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2010/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2010/Key.snk -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2010/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2010/MvvmLight.png -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2010/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2010/Resources/Package.ico -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2012/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2012/Key.snk -------------------------------------------------------------------------------- /Installer/StandardVSIX/MvvmLight.VS2012/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Installer/StandardVSIX/MvvmLight.VS2012/Resources/Package.ico -------------------------------------------------------------------------------- /Samples/CleanShutdown/CleanShutdown/GalaSoft.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/CleanShutdown/CleanShutdown/GalaSoft.ico -------------------------------------------------------------------------------- /Samples/CleanShutdown/External/Silverlight/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/CleanShutdown/External/Silverlight/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/CleanShutdown/External/WPF/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/CleanShutdown/External/WPF/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/CleanShutdown/External/WPF/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/CleanShutdown/External/WPF/WPFToolkit.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/EventToCommand/Skins/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Samples/EventToCommand/EventToCommandDemo/EventToCommand.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/EventToCommandDemo/EventToCommand.xap -------------------------------------------------------------------------------- /Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/Silverlight/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/Silverlight/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/WPF/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/WPF/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Samples/EventToCommand/References/WPF/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/EventToCommand/References/WPF/WPFToolkit.dll -------------------------------------------------------------------------------- /Samples/Flowers/Components/sdwebimage-3.7.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Components/sdwebimage-3.7.1.2.png -------------------------------------------------------------------------------- /Samples/Flowers/Components/sdwebimage-3.7.1.2/component/icons/sdwebimage_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Components/sdwebimage-3.7.1.2/component/icons/sdwebimage_128x128.png -------------------------------------------------------------------------------- /Samples/Flowers/Components/sdwebimage-3.7.1.2/component/icons/sdwebimage_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Components/sdwebimage-3.7.1.2/component/icons/sdwebimage_512x512.png -------------------------------------------------------------------------------- /Samples/Flowers/Components/sdwebimage-3.7.1.2/lib/ios-unified/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Components/sdwebimage-3.7.1.2/lib/ios-unified/SDWebImage.dll -------------------------------------------------------------------------------- /Samples/Flowers/Components/sdwebimage-3.7.1.2/lib/ios/SDWebImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Components/sdwebimage-3.7.1.2/lib/ios/SDWebImage.dll -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, Click Me! 4 | Flowers 5 | 6 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Forms/Flowers.Forms.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/Design/flowericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/Design/flowericon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/FlowersService.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" CodeBehind="FlowersService.ashx.cs" Class="Flowers.FlowersService" %> 2 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/BeeOrchid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/BeeOrchid.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/BermudaButtercup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/BermudaButtercup.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/BindWeed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/BindWeed.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/BlueGem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/BlueGem.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/CallaLily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/CallaLily.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/CommonMallow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/CommonMallow.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/CratevaReligiosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/CratevaReligiosa.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/Lantana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/Lantana.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/Oleander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/Oleander.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/OrangeCosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/OrangeCosmos.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/Poppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/Poppy.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/PrimulaFarinosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/PrimulaFarinosa.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/ScarletPimpernel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/ScarletPimpernel.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/SpanishOyster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/SpanishOyster.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/StBernardLily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/StBernardLily.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/StorksBill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/StorksBill.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/images/Verbascum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Web/images/Verbascum.jpg -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Web/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/ApplicationIcon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/BadgeLogo.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/Icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/Logo.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/SplashScreen.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/SquareTile150x150.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/SquareTile71x71.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/Assets/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/Assets/WideLogo.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.Wp/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.Wp/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace Flowers 2 | { 3 | public partial class MainPage 4 | { 5 | public MainPage() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Default.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Default@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSSbd/Resources/flower_256_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSSbd/Resources/flower_256_magenta.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Default.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Default@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Icon.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Samples/Flowers/Flowers.iOSUnified/Resources/flower_256_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/Flowers.iOSUnified/Resources/flower_256_magenta.png -------------------------------------------------------------------------------- /Samples/Flowers/References/Android/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/Android/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/NET35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/NET35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/PCL/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/PCL/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/PCL/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/PCL/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/WPSL/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/WPSL/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/WPSL/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/WPSL/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Samples/Flowers/References/iOS/GalaSoft.MvvmLight.Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/References/iOS/GalaSoft.MvvmLight.Platform.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/Microsoft.Bcl.1.1.9.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/Microsoft.Bcl.1.1.9.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/monoandroid/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/monotouch/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/net45/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net45+win8+wp8+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net451+win81+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net451+win81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-net451+win81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-win81+wp81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/portable-win81+wp81+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/sl4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/sl4/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/sl5/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/sl5/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/win8/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/wp8/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/content/wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/monoandroid/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/monotouch/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.Runtime.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net40/ensureRedirect.xml -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/net45/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+sl4+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+sl4+win8/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/System.Runtime.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net40+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net45+win8+wp8+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net451+win81+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net451+win81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-net451+win81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-win81+wp81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/portable-win81+wp81+wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/System.Runtime.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4-windowsphone71/ensureRedirect.xml -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.Runtime.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl4/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.IO.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.Runtime.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/sl5/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/win8/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/wp8/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.1.1.9/lib/wpa81/_._ -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/Microsoft.Net.Http.2.2.28.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/Microsoft.Net.Http.2.2.28.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net40/ensureRedirect.xml -------------------------------------------------------------------------------- /Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net45/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Microsoft.Net.Http.2.2.28/lib/net45/ensureRedirect.xml -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/WPtoolkit.4.2013.08.16/WPtoolkit.4.2013.08.16.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/WPtoolkit.4.2013.08.16/WPtoolkit.4.2013.08.16.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/Xamarin.Forms.1.3.4.6332.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/Xamarin.Forms.1.3.4.6332.nupkg -------------------------------------------------------------------------------- /Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/FormsViewGroup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/MonoAndroid10/FormsViewGroup.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Core.dll -------------------------------------------------------------------------------- /Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Flowers/packages/Xamarin.Forms.1.3.4.6332/lib/WP80/Xamarin.Forms.Xaml.dll -------------------------------------------------------------------------------- /Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/MvvmLightDragAndDrop/External/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/MvvmLightDragAndDrop/External/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Samples/MvvmLightDragAndDrop/TestFiles/New Text Document.txt: -------------------------------------------------------------------------------- 1 | This is a new test 2 | 1234 -------------------------------------------------------------------------------- /Samples/Navigation/NavigationDroid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/NavigationDroid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Samples/Navigation/NavigationIos/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/Navigation/NavigationIos/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/NavigationIos/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Samples/Navigation/NavigationIosStoryboard/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Samples/Navigation/NavigationIosStoryboard/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/NavigationIosStoryboard/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Samples/Navigation/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/MvvmLightLibs.5.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/MvvmLightLibs.5.1.1.0.nupkg -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL4/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/SL5/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net40/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/net45/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/sl4-wp71/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/windows8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/windows81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp8/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wp81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/Navigation/packages/MvvmLightLibs.5.1.1.0/lib/wpa81/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/RaiseCanExecuteChanged/External/Silverlight/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/RaiseCanExecuteChanged/External/Silverlight/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/RaiseCanExecuteChanged/External/WPF/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/RaiseCanExecuteChanged/External/WPF/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /Samples/RaiseCanExecuteChanged/External/WPF/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/RaiseCanExecuteChanged/External/WPF/WPFToolkit.dll -------------------------------------------------------------------------------- /Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | void GetData(Action callback); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/Icon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/ApplicationIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/ApplicationIcon.jpg -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/Background.jpg -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/AlignmentGrid.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/ApplicationIcon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/Logo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.Win8_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.Win8_TemporaryKey.pfx -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SmallLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SplashScreen.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/StoreLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | void GetData(Action callback); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | void GetData(Action callback); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/Icon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MainSkin.xaml: -------------------------------------------------------------------------------- 1 |  3 | 4 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/AlignmentGrid.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/ApplicationIcon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/AlignmentGrid.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/ApplicationIcon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/BadgeLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/Logo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SplashScreen.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile150x150.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile71x71.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/StoreLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/WideLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Colors.xaml: -------------------------------------------------------------------------------- 1 |  3 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Logo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | Task GetData(); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/Logo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/Icon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/AlignmentGrid.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/ApplicationIcon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/AlignmentGrid.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/ApplicationIcon.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/BadgeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/BadgeLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileSmall.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/Logo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SplashScreen.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile150x150.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile71x71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile71x71.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/StoreLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/WideLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/WideLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Colors.xaml: -------------------------------------------------------------------------------- 1 |  3 | -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Logo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | Task GetData(); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/StoreLogo.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Win10_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Win10_TemporaryKey.pfx -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/IDataService.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace $safeprojectname$.Model 4 | { 5 | public interface IDataService 6 | { 7 | Task GetData(); 8 | } 9 | } -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/Logo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/Default-568h@2x.png -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.ico -------------------------------------------------------------------------------- /Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.png -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL3/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL3/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL3/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL3/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/WP7/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/WP7/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/WP7/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/WP7/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight.snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL3)/GalaSoft.MvvmLight (SL3).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL3)/GalaSoft.MvvmLight (SL3).snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight.SL.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight.SL.snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight.SL5.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight.SL5.snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET35)/GalaSoft.MvvmLight.Extras.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET35)/GalaSoft.MvvmLight.Extras.snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras.snk -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/Background.png -------------------------------------------------------------------------------- /V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg -------------------------------------------------------------------------------- /V3/Installer/Installer/.docstates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Installer/Installer/.docstates -------------------------------------------------------------------------------- /V3/Installer/Installer/MVVM_Original_195x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Installer/Installer/MVVM_Original_195x100.png -------------------------------------------------------------------------------- /V3/Installer/Installer/WixUIBannerBmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Installer/Installer/WixUIBannerBmp.bmp -------------------------------------------------------------------------------- /V3/Installer/Installer/WixUIDialogBmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Installer/Installer/WixUIDialogBmp.bmp -------------------------------------------------------------------------------- /V3/NuGet/MvvmLight.3.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/MvvmLight.3.0.3.nupkg -------------------------------------------------------------------------------- /V3/NuGet/MvvmLight.3.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/MvvmLight.3.1.1.nupkg -------------------------------------------------------------------------------- /V3/NuGet/MvvmLightLibs.3.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/MvvmLightLibs.3.0.3.nupkg -------------------------------------------------------------------------------- /V3/NuGet/MvvmLightLibs.3.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/MvvmLightLibs.3.1.1.nupkg -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL3/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL3/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.SL4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.SL5.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.WPF4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl3-wp/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl3-wp/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Full/lib/sl4-windowsphone71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Full/lib/sl4-windowsphone71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL3/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL3/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.SL4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.SL4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.SL5.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/SL5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/SL5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.Extras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.Extras.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net35/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net35/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.WPF4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.WPF4.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl3-wp/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl3-wp/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl4-windowsphone71/GalaSoft.MvvmLight.Extras.WP71.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll -------------------------------------------------------------------------------- /V3/NuGet/V3Libs/lib/sl4-windowsphone71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/NuGet/V3Libs/lib/sl4-windowsphone71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/ApplicationIcon.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/Background.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/SplashScreenImage.jpg -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/ApplicationIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/ApplicationIcon.jpg -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/Background.jpg -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.ico -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.png -------------------------------------------------------------------------------- /V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timdetering/mvvmlight/14c9e1848359cbfe717998af3c821801e68d7681/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/SplashScreenImage.jpg --------------------------------------------------------------------------------