├── .gitignore
├── 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 (SL5)
│ ├── GalaSoft.MvvmLight (SL5).csproj
│ └── GalaSoft.MvvmLight (SL5).snk
├── GalaSoft.MvvmLight (VS2015).sln
├── GalaSoft.MvvmLight (VS2017).sln
├── GalaSoft.MvvmLight (VS2017Std).sln
├── GalaSoft.MvvmLight.AndroidSupport
│ ├── GalaSoft.MvvmLight.Platform.AndroidSupport.csproj
│ ├── Helpers
│ │ ├── CachingViewHolder.cs
│ │ ├── ExtensionsAndroid2.cs
│ │ └── ObservableRecyclerAdapter.cs
│ ├── Resources
│ │ └── Resource.Designer.cs
│ └── packages.config
├── 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 (SL5)
│ ├── GalaSoft.MvvmLight.Extras (SL5).csproj
│ ├── GalaSoft.MvvmLight.Extras (SL5).snk
│ └── packages.config
├── GalaSoft.MvvmLight.Platform (Android)
│ ├── GalaSoft.MvvmLight.Platform (Android).csproj
│ ├── Helpers
│ │ ├── Binding.cs
│ │ ├── BindingGeneric.cs
│ │ ├── BindingGenericAndroid.cs
│ │ ├── BindingGenericObsolete.cs
│ │ ├── BindingGenericObsoleteAndroid.cs
│ │ ├── BindingMode.cs
│ │ ├── Extensions.cs
│ │ ├── ExtensionsAndroid.cs
│ │ ├── IWeakEventListener.cs
│ │ ├── ObservableAdapter.cs
│ │ ├── PropertyChangedEventManager.cs
│ │ └── UpdateSourceTriggerMode.cs
│ ├── Resources
│ │ └── Resource.Designer.cs
│ ├── Threading
│ │ └── DispatcherHelper.cs
│ └── Views
│ │ ├── ActivityBase.cs
│ │ ├── DialogService.cs
│ │ └── NavigationService.cs
├── GalaSoft.MvvmLight.Platform (AndroidStd)
│ ├── GalaSoft.MvvmLight.Platform (AndroidStd).csproj
│ └── Resources
│ │ └── Resource.Designer.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
├── GalaSoft.MvvmLight.Platform (NET45Std)
│ ├── GalaSoft.MvvmLight.Platform (NET45Std).csproj
│ ├── GalaSoft.MvvmLight.Platform (NET45Std).snk
│ └── Properties
│ │ └── AssemblyInfo.cs
├── GalaSoft.MvvmLight.Platform (UWP)
│ ├── GalaSoft.MvvmLight.Platform (UWP).csproj
│ ├── GalaSoft.MvvmLight.Platform.snk
│ ├── Properties
│ │ └── GalaSoft.MvvmLight.Platform.rd.xml
│ └── Views
│ │ ├── DialogService.cs
│ │ └── NavigationService.cs
├── GalaSoft.MvvmLight.Platform (UWPStd)
│ ├── GalaSoft.MvvmLight.Platform (UWPStd).csproj
│ └── Properties
│ │ └── GalaSoft.MvvmLight.Platform.rd.xml
├── 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
│ ├── GalaSoft.MvvmLight.Platform (iOS).snk
│ ├── Helpers
│ │ ├── BindingGenericApple.cs
│ │ ├── BindingGenericObsoleteApple.cs
│ │ ├── ExtensionsApple.cs
│ │ ├── ObservableCollectionViewSource.cs
│ │ ├── ObservableTableViewController.cs
│ │ └── ObservableTableViewSource.cs
│ ├── Threading
│ │ └── DispatcherHelper.cs
│ └── Views
│ │ ├── ControllerBase.cs
│ │ ├── DialogService.cs
│ │ └── NavigationService.cs
├── GalaSoft.MvvmLight.Platform (iOSStd)
│ └── GalaSoft.MvvmLight.Platform (iOSStd).csproj
├── GalaSoft.MvvmLight.STD10
│ ├── GalaSoft.MvvmLight.STD10.csproj
│ └── GalaSoft.MvvmLight.STD10.snk
├── Tests
│ ├── AndroidTestApp
│ │ ├── Assets
│ │ │ └── AboutAssets.txt
│ │ ├── Binding
│ │ │ ├── BindingAccountTest.cs
│ │ │ ├── BindingDeepPathHybridTest.cs
│ │ │ ├── BindingDeepPathTest.cs
│ │ │ ├── BindingSourceControlTest.cs
│ │ │ ├── BindingSourceTest.cs
│ │ │ ├── BindingTargetControlTest.cs
│ │ │ ├── BindingTargetTest.cs
│ │ │ ├── BindingTest.cs
│ │ │ ├── BindingThreadingTest.cs
│ │ │ ├── BindingToListTest.cs
│ │ │ ├── BindingValueChangedFromSourceControlTest.cs
│ │ │ ├── BindingValueChangedFromSourceTest.cs
│ │ │ ├── BindingValueChangedFromTargetControlTest.cs
│ │ │ ├── BindingValueChangedFromTargetTest.cs
│ │ │ ├── ConverterTest.cs
│ │ │ ├── ObserveEventImplicitTest.cs
│ │ │ ├── ObserveEventLostFocusTest.cs
│ │ │ ├── ObserveEventNoArgumentTest.cs
│ │ │ ├── ObserveEventNonDefaultEventTest.cs
│ │ │ ├── ObserveEventPropertyChangedTest.cs
│ │ │ ├── ObserveEventTest.cs
│ │ │ ├── SetCommandTest.cs
│ │ │ ├── UpdateTriggerImplicitTest.cs
│ │ │ ├── UpdateTriggerLostFocusTest.cs
│ │ │ ├── UpdateTriggerNoArgumentTest.cs
│ │ │ ├── UpdateTriggerNonDefaultEventTest.cs
│ │ │ ├── UpdateTriggerPropertyChangedTest.cs
│ │ │ └── UpdateTriggerTest.cs
│ │ ├── Controls
│ │ │ └── ButtonEx.cs
│ │ ├── GalaSoft.MvvmLight.Test (Android).csproj
│ │ ├── MainActivity.cs
│ │ ├── Properties
│ │ │ ├── AndroidManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── AboutResources.txt
│ │ │ ├── Resource.Designer.cs
│ │ │ ├── drawable
│ │ │ │ └── Icon.png
│ │ │ └── values
│ │ │ │ └── Strings.xml
│ │ ├── ViewModel
│ │ │ ├── AccountModel.cs
│ │ │ ├── AccountViewModel.cs
│ │ │ ├── CommandImpl.cs
│ │ │ ├── TestItem.cs
│ │ │ ├── TestModel.cs
│ │ │ └── TestViewModel.cs
│ │ └── packages.config
│ ├── AppleTestApp
│ │ ├── AppDelegate.cs
│ │ ├── Binding
│ │ │ ├── ObserveEventImplicitTest.cs
│ │ │ ├── ObserveEventNoArgumentTest.cs
│ │ │ ├── ObserveEventPropertyChangedTest.cs
│ │ │ ├── ObserveEventTest.cs
│ │ │ ├── SetCommandTest.cs
│ │ │ ├── UpdateTriggerImplicitTest.cs
│ │ │ ├── UpdateTriggerNoArgumentTest.cs
│ │ │ ├── UpdateTriggerPropertyChangedTest.cs
│ │ │ └── UpdateTriggerTest.cs
│ │ ├── Controls
│ │ │ ├── UIBarButtonItemEx.cs
│ │ │ ├── UIButtonEx.cs
│ │ │ ├── UISwitchEx.cs
│ │ │ └── UITextViewEx.cs
│ │ ├── Entitlements.plist
│ │ ├── GalaSoft.MvvmLight.Test (iOS).csproj
│ │ ├── GettingStarted.Xamarin
│ │ ├── Info.plist
│ │ ├── Main.cs
│ │ ├── ObservableTable
│ │ │ ├── ObservableTableViewSourceTest.cs
│ │ │ ├── ReuseIdTest.cs
│ │ │ └── TestUiTableViewCell.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Resources
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon.png
│ │ │ ├── Icon@2x.png
│ │ │ └── LaunchScreen.xib
│ ├── 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 (STD10)
│ │ ├── GalaSoft.MvvmLight.Test (STD10).csproj
│ │ └── 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
│ │ ├── GalaSoft.MvvmLight.Test (PNET45).csproj
│ │ ├── Helpers
│ │ │ ├── CommonTestClass.cs
│ │ │ ├── InternalTestClass.cs
│ │ │ ├── InternalTestClassGeneric.cs
│ │ │ ├── InternalTestClassGenericWithResult.cs
│ │ │ ├── InternalTestClassWithResult.cs
│ │ │ ├── PublicTestClass.cs
│ │ │ ├── PublicTestClassGeneric.cs
│ │ │ ├── PublicTestClassGenericWithResult.cs
│ │ │ ├── PublicTestClassWithResult.cs
│ │ │ ├── WeakActionGenericNestedTest.cs
│ │ │ ├── WeakActionGenericTest.cs
│ │ │ ├── WeakActionNestedTest.cs
│ │ │ ├── WeakActionTest.cs
│ │ │ ├── WeakActionTestCase.cs
│ │ │ ├── WeakFuncGenericNestedTest.cs
│ │ │ ├── WeakFuncGenericTest.cs
│ │ │ ├── WeakFuncNestedTest.cs
│ │ │ └── WeakFuncTest.cs
│ │ ├── Ioc
│ │ │ ├── SimpleIocTestAutoCreation.cs
│ │ │ ├── SimpleIocTestContains.cs
│ │ │ ├── SimpleIocTestCreationTime.cs
│ │ │ ├── SimpleIocTestExceptions.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
│ │ ├── ObservableObjectTest.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
│ │ │ ├── CommandViewModel.cs
│ │ │ ├── TestClassWithObservableObject.cs
│ │ │ ├── TestObservableObject.cs
│ │ │ ├── TestViewModel.cs
│ │ │ ├── TestViewModelForPropertyChanged.cs
│ │ │ ├── TestViewModelNoMagicString.cs
│ │ │ └── ViewModelStub.cs
│ │ ├── ViewModelBaseAndPropertyChangedTest.cs
│ │ ├── ViewModelBaseTest.cs
│ │ └── packages.config
│ │ ├── GalaSoft.MvvmLight.Test (PNET45Std)
│ │ └── GalaSoft.MvvmLight.Test (PNET45Std).csproj
│ │ ├── 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
├── Installer
├── InstallItems
│ ├── Nuget
│ │ ├── CommonServiceLocator.1.0.nupkg
│ │ ├── CommonServiceLocator.1.3.nupkg
│ │ ├── MvvmLight.5.4.1.1.nupkg
│ │ ├── MvvmLightAndroidSupport.5.4.1.1.nupkg
│ │ ├── MvvmLightLibs.5.4.1.1.nupkg
│ │ ├── MvvmLightLibsStd10.5.4.1.1.nupkg
│ │ ├── MvvmLightStd10.5.4.1.2.nupkg
│ │ └── commonservicelocator.2.0.2.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
│ │ └── VS2017
│ │ ├── Mvvm.Droid.zip
│ │ ├── Mvvm.WPF451.zip
│ │ ├── Mvvm.Win10Univ.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
│ ├── MvvmLight.VS2017.sln
│ ├── MvvmLight.VS2017
│ ├── MvvmLight.VS2017.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── source.extension.vsixmanifest
│ └── _gatherbinaries.bat
├── LICENSE
├── NuGet
├── MvvmLight.V5.nuspec
├── MvvmLightAndroidSupport.nuspec
├── MvvmLightLibs.V5.nuspec
├── MvvmLightLibsStd10.V5.nuspec
├── MvvmLightStd10.V5.nuspec
├── V5Full
│ ├── Content
│ │ └── ViewModel
│ │ │ ├── MainViewModel.cs.pp
│ │ │ ├── ViewModelLocator.cs.pp
│ │ │ └── ViewModelLocatorStd10.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
├── DispatcherHelperSampleStd
│ ├── DispatcherHelperSampleStd.Data
│ │ ├── DispatcherHelperSampleStd.Data.csproj
│ │ ├── Helpers
│ │ │ └── IDispatcherHelper.cs
│ │ └── ViewModel
│ │ │ ├── MainViewModel.cs
│ │ │ └── ViewModelLocator.cs
│ ├── DispatcherHelperSampleStd.Uwp
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ ├── LockScreenLogo.scale-200.png
│ │ │ ├── SplashScreen.scale-200.png
│ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ ├── StoreLogo.png
│ │ │ └── Wide310x150Logo.scale-200.png
│ │ ├── DispatcherHelperSampleStd.Uwp.csproj
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── Package.appxmanifest
│ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── Default.rd.xml
│ ├── DispatcherHelperSampleStd.sln
│ ├── DispatcherHelperSampleStd
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── DispatcherHelperSampleStd.WPF.csproj
│ │ ├── Helpers
│ │ │ └── DispatcherHelperEx.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── packages.config
│ ├── Img
│ │ ├── 2017-10-24_16-26-09.png
│ │ └── 2017-10-24_19-37-12.png
│ └── README.md
├── 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
├── 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
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon.png
│ │ │ └── Icon@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
│ │ ├── Page4Controller.cs
│ │ ├── Page4Controller.designer.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon.png
│ │ │ └── Icon@2x.png
│ │ └── packages.config
│ ├── NavigationWinStore.sln
│ ├── NavigationWinStore
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ ├── Logo.scale-100.png
│ │ │ ├── SmallLogo.scale-100.png
│ │ │ ├── SplashScreen.scale-100.png
│ │ │ └── StoreLogo.scale-100.png
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── NavigationWinStore.csproj
│ │ ├── NavigationWinStore_TemporaryKey.pfx
│ │ ├── Package.appxmanifest
│ │ ├── Page2.xaml
│ │ ├── Page2.xaml.cs
│ │ ├── Page3.xaml
│ │ ├── Page3.xaml.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── 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
│ │ └── repositories.config
├── ObservableTableAndCollectionViewSource
│ ├── ObservableTableAndCollectionViewSource.sln
│ ├── ObservableTableAndCollectionViewSource
│ │ ├── AppDelegate.cs
│ │ ├── CollectionViewController.cs
│ │ ├── CollectionViewController.designer.cs
│ │ ├── Entitlements.plist
│ │ ├── Info.plist
│ │ ├── Layout
│ │ │ ├── CircleLayout.cs
│ │ │ ├── GridLayout.cs
│ │ │ ├── HeaderForCollectionView.cs
│ │ │ ├── HeaderForTableView.cs
│ │ │ ├── TestCollectionViewCell.cs
│ │ │ └── TestTableViewCell.cs
│ │ ├── Main.cs
│ │ ├── MainViewController.cs
│ │ ├── MainViewController.designer.cs
│ │ ├── Main_iPhone.storyboard
│ │ ├── Model
│ │ │ └── DataItem.cs
│ │ ├── ObservableTableAndCollectionViewSource.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Resources
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Icon-60@2x.png
│ │ │ ├── Icon-Small-40@2x.png
│ │ │ ├── Icon-Small.png
│ │ │ ├── Icon-Small@2x.png
│ │ │ ├── Icon.png
│ │ │ └── Icon@2x.png
│ │ ├── UITableViewTableSourceController.cs
│ │ ├── UITableViewTableSourceController.designer.cs
│ │ ├── ViewModel
│ │ │ ├── MainViewModel.cs
│ │ │ └── ViewModelLocator.cs
│ │ └── packages.config
│ ├── References
│ │ ├── PCL
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll
│ │ │ ├── GalaSoft.MvvmLight.Extras.dll.mdb
│ │ │ ├── GalaSoft.MvvmLight.Extras.xml
│ │ │ ├── GalaSoft.MvvmLight.dll
│ │ │ ├── GalaSoft.MvvmLight.dll.mdb
│ │ │ └── GalaSoft.MvvmLight.xml
│ │ └── iOS
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll
│ │ │ ├── GalaSoft.MvvmLight.Platform.dll.mdb
│ │ │ └── GalaSoft.MvvmLight.Platform.xml
│ └── packages
│ │ └── CommonServiceLocator.1.3
│ │ ├── CommonServiceLocator.1.3.nupkg
│ │ └── lib
│ │ └── portable-net4+sl5+netcore45+wpa81+wp8
│ │ ├── Microsoft.Practices.ServiceLocation.XML
│ │ └── Microsoft.Practices.ServiceLocation.dll
└── 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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/NET35/Microsoft.Practices.ServiceLocation.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/NET45/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/NET45/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL4/Microsoft.Practices.ServiceLocation.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL4/Microsoft.Practices.ServiceLocation.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WP71/Microsoft.Practices.ServiceLocation.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WP71/Microsoft.Practices.ServiceLocation.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WP71/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WP71/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WPA81/Microsoft.Practices.ServiceLocation.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WPA81/Microsoft.Practices.ServiceLocation.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WPSL80/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WPSL80/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/External/WPSL81/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/External/WPSL81/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/GalaSoft.MvvmLight (PCL).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/GalaSoft.MvvmLight (PCL).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/Helpers/Empty.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight (PCL)/Helpers/Empty.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight (SL5).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight (SL5).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.AndroidSupport/Helpers/CachingViewHolder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.AndroidSupport/Helpers/CachingViewHolder.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.AndroidSupport/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.AndroidSupport/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET35)/GalaSoft.MvvmLight.Extras (NET35).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET35)/GalaSoft.MvvmLight.Extras (NET35).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras (NET4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras (NET4).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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (PCL)/GalaSoft.MvvmLight.Extras (PCL).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/GalaSoft.MvvmLight.Extras (SL5).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingGeneric.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingGenericAndroid.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingGenericAndroid.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/BindingMode.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/ObservableAdapter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/ObservableAdapter.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/UpdateSourceTriggerMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Helpers/UpdateSourceTriggerMode.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Views/ActivityBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (Android)/Views/ActivityBase.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (AndroidStd)/Resources/Resource.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (AndroidStd)/Resources/Resource.Designer.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (NET45)/GalaSoft.MvvmLight.Platform (NET45).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (NET45)/GalaSoft.MvvmLight.Platform (NET45).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (NET45Std)/GalaSoft.MvvmLight.Platform (NET45Std).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (NET45Std)/GalaSoft.MvvmLight.Platform (NET45Std).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (UWP)/GalaSoft.MvvmLight.Platform.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (UWP)/GalaSoft.MvvmLight.Platform.snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN8)/BUILDINSTRUCTIONS.txt:
--------------------------------------------------------------------------------
1 | In order to build these assemblies, start by building the VS2013 solution
2 | and then execute _gatherbinaries.
3 |
4 | This is to make sure that the WIN8 references are built before this solution
5 | is built.
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN8)/GalaSoft.MvvmLight.Platform (WIN8).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN8)/GalaSoft.MvvmLight.Platform (WIN8).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN81)/GalaSoft.MvvmLight.Platform (WIN81).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN81)/GalaSoft.MvvmLight.Platform (WIN81).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WIN81)/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WP81)/GalaSoft.MvvmLight.Platform (WP81).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (WP81)/GalaSoft.MvvmLight.Platform (WP81).snk
--------------------------------------------------------------------------------
/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)/GalaSoft.MvvmLight.Platform (iOS).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/GalaSoft.MvvmLight.Platform (iOS).snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Helpers/BindingGenericApple.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Helpers/BindingGenericApple.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Helpers/ObservableTableViewController.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Helpers/ObservableTableViewController.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/DialogService.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/DialogService.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/NavigationService.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Platform (iOS)/Views/NavigationService.cs
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/GalaSoft.MvvmLight.STD10/GalaSoft.MvvmLight.STD10.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/GalaSoft.MvvmLight.STD10/GalaSoft.MvvmLight.STD10.snk
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AndroidTestApp/Resources/drawable/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AndroidTestApp/Resources/drawable/Icon.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AndroidTestApp/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | UnitTestApp1
5 |
6 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/GettingStarted.Xamarin:
--------------------------------------------------------------------------------
1 |
2 | GS\iOS\CS\iOSApp\GettingStarted.html
3 | false
4 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/AppleTestApp/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (NET4)/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (SL5)/Properties/AssemblyInfo.SL5.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.InteropServices;
2 |
3 | // The following GUID is for the ID of the typelib if this project is exposed to COM
4 | [assembly: Guid("5CD7CAB3-F745-47F4-80C7-917031A52E33")]
5 |
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/Background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/Background.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/Properties/AssemblyInfo.Wp71.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.InteropServices;
2 |
3 | // The following GUID is for the ID of the typelib if this project is exposed to COM
4 | [assembly: Guid("46ea6e54-595f-41f1-86fb-4ca3df70aa87")]
5 |
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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 (PWIN81)/Images/UnitTestLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/Images/UnitTestLogo.scale-100.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/Images/UnitTestSmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/Images/UnitTestSmallLogo.scale-100.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/Images/UnitTestStoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWIN81)/Images/UnitTestStoreLogo.scale-100.png
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/Logo.scale-240.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/SmallLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/SmallLogo.scale-240.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/SplashScreen.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/SplashScreen.scale-240.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/Square71x71Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/Square71x71Logo.scale-240.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/StoreLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/StoreLogo.scale-240.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/WideLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWP81)/Assets/WideLogo.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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL80)/Assets/Tiles/FlipCycleTileSmall.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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/BadgeLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SplashScreen.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SquareTile150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SquareTile150x150.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SquareTile71x71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/SquareTile71x71.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/GalaSoft.MvvmLight/Tests/PCL/GalaSoft.MvvmLight.Test (PWPSL81)/Assets/WideLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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 |
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/CommonServiceLocator.1.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/CommonServiceLocator.1.0.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/CommonServiceLocator.1.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/CommonServiceLocator.1.3.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/MvvmLight.5.4.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/MvvmLight.5.4.1.1.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/MvvmLightAndroidSupport.5.4.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/MvvmLightAndroidSupport.5.4.1.1.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/MvvmLightLibs.5.4.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/MvvmLightLibs.5.4.1.1.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/MvvmLightLibsStd10.5.4.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/MvvmLightLibsStd10.5.4.1.1.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/MvvmLightStd10.5.4.1.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/MvvmLightStd10.5.4.1.2.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Nuget/commonservicelocator.2.0.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Nuget/commonservicelocator.2.0.2.nupkg
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.SL.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.WP7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.WP7.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.WPF.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.Win8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.Win8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/View.Win81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/View.Win81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.SL.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.WP7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.WP7.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.WPF.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.Win8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.Win8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vm.Win81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vm.Win81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.SL.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.WP7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.WP7.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.WPF.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.Win8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.Win8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ItemTemplates/Vml.Win81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ItemTemplates/Vml.Win81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Droid.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Droid.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL4.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL4.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL5.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.SL5.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP71.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP71.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF35.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF35.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF4.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF4.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF45.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.WPF45.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Win8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.Win8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.iPhone.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2012/Mvvm.iPhone.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Droid.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Droid.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.SL5.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.SL5.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WP81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPA81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPA81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF35.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF35.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF4.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF4.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF45.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF45.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF451.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.WPF451.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Win81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.Win81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.iPhone.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2013/Mvvm.iPhone.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Droid.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Droid.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.SL5.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.SL5.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP8.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP8.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WP81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPA81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPA81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPF451.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.WPF451.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win10Univ.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win10Univ.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win81.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.Win81.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.iPhone.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2015/Mvvm.iPhone.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.Droid.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.Droid.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.WPF451.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.WPF451.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.Win10Univ.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.Win10Univ.zip
--------------------------------------------------------------------------------
/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.iPhone.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/InstallItems/Templates/ProjectTemplates/VS2017/Mvvm.iPhone.zip
--------------------------------------------------------------------------------
/Installer/StandardVSIX/Assets/Icon Purple 100x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/Assets/Icon Purple 100x100.png
--------------------------------------------------------------------------------
/Installer/StandardVSIX/Assets/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2010/Icon Purple 100x100.png
--------------------------------------------------------------------------------
/Installer/StandardVSIX/MvvmLight.VS2010/Key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2010/Key.snk
--------------------------------------------------------------------------------
/Installer/StandardVSIX/MvvmLight.VS2010/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2010/MvvmLight.png
--------------------------------------------------------------------------------
/Installer/StandardVSIX/MvvmLight.VS2010/Resources/Package.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2010/Resources/Package.ico
--------------------------------------------------------------------------------
/Installer/StandardVSIX/MvvmLight.VS2012/Key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2012/Key.snk
--------------------------------------------------------------------------------
/Installer/StandardVSIX/MvvmLight.VS2012/Resources/Package.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Installer/StandardVSIX/MvvmLight.VS2012/Resources/Package.ico
--------------------------------------------------------------------------------
/Samples/CleanShutdown/CleanShutdown/GalaSoft.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/CleanShutdown/CleanShutdown/GalaSoft.ico
--------------------------------------------------------------------------------
/Samples/CleanShutdown/CleanShutdown/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Samples/CleanShutdown/External/Silverlight/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/CleanShutdown/External/Silverlight/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/CleanShutdown/External/WPF/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/CleanShutdown/External/WPF/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/CleanShutdown/External/WPF/WPFToolkit.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/CleanShutdown/External/WPF/WPFToolkit.dll
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd.Uwp/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/DispatcherHelperSampleStd/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/Img/2017-10-24_16-26-09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/Img/2017-10-24_16-26-09.png
--------------------------------------------------------------------------------
/Samples/DispatcherHelperSampleStd/Img/2017-10-24_19-37-12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/DispatcherHelperSampleStd/Img/2017-10-24_19-37-12.png
--------------------------------------------------------------------------------
/Samples/EventToCommand/EventToCommand/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Samples/EventToCommand/EventToCommand/Skins/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Samples/EventToCommand/EventToCommandDemo/EventToCommand.xap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/EventToCommandDemo/EventToCommand.xap
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/Silverlight/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/Silverlight/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/Silverlight/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/WPF/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/WPF/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/WPF/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/Samples/EventToCommand/References/WPF/WPFToolkit.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/EventToCommand/References/WPF/WPFToolkit.dll
--------------------------------------------------------------------------------
/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/MvvmLightDragAndDrop/External/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/MvvmLightDragAndDrop/External/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/MvvmLightDragAndDrop/External/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/Samples/MvvmLightDragAndDrop/MvvmLightDragAndDrop/Skins/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationDroid/Resources/drawable/Icon.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationDroid/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | NavigationDroid
5 |
6 |
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIos/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIos/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationIosStoryboard/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationIosStoryboard/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/Assets/Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationWinStore/Assets/Logo.scale-100.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/Assets/SmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationWinStore/Assets/SmallLogo.scale-100.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationWinStore/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationWinStore/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/NavigationWinStore_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/NavigationWinStore/NavigationWinStore_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Samples/Navigation/NavigationWinStore/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Samples/Navigation/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/Navigation/packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/ObservableTableAndCollectionViewSource/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.Extras.dll.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.Extras.dll.mdb
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.dll.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/PCL/GalaSoft.MvvmLight.dll.mdb
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/iOS/GalaSoft.MvvmLight.Platform.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/iOS/GalaSoft.MvvmLight.Platform.dll
--------------------------------------------------------------------------------
/Samples/ObservableTableAndCollectionViewSource/References/iOS/GalaSoft.MvvmLight.Platform.dll.mdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/ObservableTableAndCollectionViewSource/References/iOS/GalaSoft.MvvmLight.Platform.dll.mdb
--------------------------------------------------------------------------------
/Samples/RaiseCanExecuteChanged/External/Silverlight/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/RaiseCanExecuteChanged/External/Silverlight/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/RaiseCanExecuteChanged/External/WPF/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/RaiseCanExecuteChanged/External/WPF/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/Samples/RaiseCanExecuteChanged/External/WPF/WPFToolkit.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/RaiseCanExecuteChanged/External/WPF/WPFToolkit.dll
--------------------------------------------------------------------------------
/Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.Samples.RaiseCanExecuteChanged.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.Samples.RaiseCanExecuteChanged.snk
--------------------------------------------------------------------------------
/Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Samples/RaiseCanExecuteChanged/RaiseCanExecuteChanged/GalaSoft.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.SL/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.Win8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/View.Win81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.SL/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.Win8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vm.Win81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.SL/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.Win8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ItemTemplates/Vml.Win81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/Icon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Droid/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | $safeprojectname$.Droid
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL4/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.SL5/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/ApplicationIcon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/ApplicationIcon.jpg
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/Background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/Background.jpg
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP71/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/AlignmentGrid.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/ApplicationIcon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/IconicTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF35/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF4/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.WPF45/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.Win8_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SmallLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SmallLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SplashScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/SplashScreen.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.Win8/StoreLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/Default-568h@2x.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2012/Mvvm.iPhone/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/Icon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Droid/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | $safeprojectname$.Droid
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.SL5/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/AlignmentGrid.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/ApplicationIcon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/IconicTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/AlignmentGrid.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/ApplicationIcon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/BadgeLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/BadgeLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/IconicTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/Logo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SplashScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SplashScreen.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile150x150.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile71x71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/SquareTile71x71.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/StoreLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/WideLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WP81/WideLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Colors.xaml:
--------------------------------------------------------------------------------
1 |
3 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/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.WPA81/Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Logo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SmallLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SmallLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SplashScreen.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/SplashScreen.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Square71x71Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/Square71x71Logo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/StoreLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/StoreLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/WideLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPA81/WideLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF35/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF4/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF45/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.WPF451/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/Logo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SmallLogo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.Win81/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/Default-568h@2x.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/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/VS2013/Mvvm.iPhone/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2013/Mvvm.iPhone/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/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/VS2015/Mvvm.Droid/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/Icon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Droid/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, Click Me!
4 | $safeprojectname$.Droid
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.SL5/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/AlignmentGrid.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/ApplicationIcon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/IconicTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP8/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/AlignmentGrid.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/ApplicationIcon.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/BadgeLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/BadgeLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/IconicTileSmall.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/Logo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SplashScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SplashScreen.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile150x150.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile71x71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/SquareTile71x71.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/StoreLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/WideLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WP81/WideLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Colors.xaml:
--------------------------------------------------------------------------------
1 |
3 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/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/VS2015/Mvvm.WPA81/Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Logo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SmallLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SmallLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SplashScreen.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/SplashScreen.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Square71x71Logo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/Square71x71Logo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/StoreLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/StoreLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/WideLogo.scale-240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPA81/WideLogo.scale-240.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.WPF451/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/StoreLogo.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win10Univ/Win10_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/Logo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.Win81_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/MvvmLight.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SmallLogo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.Win81/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/Default-568h@2x.png
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/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/VS2015/Mvvm.iPhone/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.ico
--------------------------------------------------------------------------------
/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/Templates/CSharp/ProjectTemplates/VS2015/Mvvm.iPhone/MvvmLight.png
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/NET35/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/NET4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL3/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL3/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL3/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL3/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL3/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL3/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL4/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL5/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL5/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/SL5/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP7/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP7/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP7/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP7/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP7/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP7/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP71/Microsoft.Silverlight.Testing.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP71/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP71/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/External/WP71/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET35)/GalaSoft.MvvmLight (NET35).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight (NET4).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (NET4)/GalaSoft.MvvmLight.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL3)/GalaSoft.MvvmLight (SL3).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL3)/GalaSoft.MvvmLight (SL3).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight (SL4).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight.SL.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL4)/GalaSoft.MvvmLight.SL.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight (SL5)/GalaSoft.MvvmLight.SL5.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET35)/GalaSoft.MvvmLight.Extras.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras (NET4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras (NET4).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (NET4)/GalaSoft.MvvmLight.Extras.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL3)/GalaSoft.MvvmLight.Extras (SL).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL3)/GalaSoft.MvvmLight.Extras (SL).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras (SL4).snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras (SL4).snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras.SL.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL4)/GalaSoft.MvvmLight.Extras.SL.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/GalaSoft.MvvmLight.Extras.SL5.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Extras (SL5)/GalaSoft.MvvmLight.Extras.SL5.snk
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/ApplicationIcon.png
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/Background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/Background.png
--------------------------------------------------------------------------------
/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/GalaSoft.MvvmLight/GalaSoft.MvvmLight.Test (WP71)/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/Silverlight/MvvmView.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/Silverlight/MvvmView.SL.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/Silverlight/MvvmViewModel.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/Silverlight/MvvmViewModel.SL.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmView.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmView.WPF.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmViewModel.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmViewModel.WPF.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WindowsPhone/MvvmView.WP7.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ItemTemplates/WindowsPhone/MvvmView.WP7.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/Silverlight/MvvmLight.SL.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/Silverlight/MvvmLight.SL.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/WPF/MvvmLight.WPF.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/WPF/MvvmLight.WPF.zip
--------------------------------------------------------------------------------
/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/WPF/MvvmLight.WPF4.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/InstallItems/GalaSoft.MvvmLight.Templates/ProjectTemplates/WPF/MvvmLight.WPF4.zip
--------------------------------------------------------------------------------
/V3/Installer/Installer/.docstates:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/Installer/.docstates
--------------------------------------------------------------------------------
/V3/Installer/Installer/MVVM_Original_195x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/Installer/MVVM_Original_195x100.png
--------------------------------------------------------------------------------
/V3/Installer/Installer/WixUIBannerBmp.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/Installer/WixUIBannerBmp.bmp
--------------------------------------------------------------------------------
/V3/Installer/Installer/WixUIDialogBmp.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Installer/Installer/WixUIDialogBmp.bmp
--------------------------------------------------------------------------------
/V3/NuGet/MvvmLight.3.0.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/MvvmLight.3.0.3.nupkg
--------------------------------------------------------------------------------
/V3/NuGet/MvvmLight.3.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/MvvmLight.3.1.1.nupkg
--------------------------------------------------------------------------------
/V3/NuGet/MvvmLightLibs.3.0.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/MvvmLightLibs.3.0.3.nupkg
--------------------------------------------------------------------------------
/V3/NuGet/MvvmLightLibs.3.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/MvvmLightLibs.3.1.1.nupkg
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL3/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL3/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL3/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.SL4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL4/GalaSoft.MvvmLight.SL4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.SL5.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL5/GalaSoft.MvvmLight.SL5.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/SL5/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/SL5/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net35/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net35/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net35/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.WPF4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net40/GalaSoft.MvvmLight.WPF4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/net40/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/net40/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/sl3-wp/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Full/lib/sl4-windowsphone71/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Full/lib/sl4-windowsphone71/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL3/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL3/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL3/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.Extras.SL4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.SL4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL4/GalaSoft.MvvmLight.SL4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL4/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL4/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.Extras.SL5.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.SL5.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL5/GalaSoft.MvvmLight.SL5.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/SL5/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/SL5/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.Extras.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.Extras.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net35/GalaSoft.MvvmLight.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net35/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net35/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.Extras.WPF4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.WPF4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net40/GalaSoft.MvvmLight.WPF4.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/net40/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/net40/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.Extras.WP7.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/sl3-wp/GalaSoft.MvvmLight.WP7.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/sl3-wp/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/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/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/sl4-windowsphone71/GalaSoft.MvvmLight.WP71.dll
--------------------------------------------------------------------------------
/V3/NuGet/V3Libs/lib/sl4-windowsphone71/System.Windows.Interactivity.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/NuGet/V3Libs/lib/sl4-windowsphone71/System.Windows.Interactivity.dll
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmView.SL/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmViewModel.SL/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/Silverlight/MvvmViewModelLocator.SL/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmView.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmViewModel.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WPF/MvvmViewModelLocator.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmView.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModel.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ItemTemplates/WindowsPhone/MvvmViewModelLocator.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL4/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/Silverlight/MvvmLight.SL5/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MainSkin.xaml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WPF/MvvmLight.WPF4/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/ApplicationIcon.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/Background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/Background.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP7/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/ApplicationIcon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/ApplicationIcon.jpg
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/Background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/Background.jpg
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.ico
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/MvvmLight.png
--------------------------------------------------------------------------------
/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lbugnion/mvvmlight/aa657f7150730ea9d82d1077ffa0038affc400ca/V3/Templates/ProjectTemplates/WindowsPhone/MvvmLight.WP71/SplashScreenImage.jpg
--------------------------------------------------------------------------------