diff --git a/SampleApps/PhoneApplication/App.xaml b/SampleApps/PhoneApplication/App.xaml deleted file mode 100644 index fa95c1b9..00000000 --- a/SampleApps/PhoneApplication/App.xaml +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/SampleApps/PhoneApplication/App.xaml.cs b/SampleApps/PhoneApplication/App.xaml.cs deleted file mode 100644 index 8e7691c2..00000000 --- a/SampleApps/PhoneApplication/App.xaml.cs +++ /dev/null @@ -1,121 +0,0 @@ -using System; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Media.Animation; -using Windows.UI.Xaml.Navigation; - -// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=391641 - -namespace PhoneApplication -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - public sealed partial class App : Application - { - private TransitionCollection transitions; - - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - this.Suspending += this.OnSuspending; - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used when the application is launched to open a specific file, to display - /// search results, and so forth. - /// - /// Details about the launch request and process. - protected override void OnLaunched(LaunchActivatedEventArgs e) - { -#if DEBUG - if (System.Diagnostics.Debugger.IsAttached) - { - this.DebugSettings.EnableFrameRateCounter = true; - } -#endif - - Frame rootFrame = Window.Current.Content as Frame; - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - // TODO: change this value to a cache size that is appropriate for your application - rootFrame.CacheSize = 1; - - if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - // TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - Window.Current.Content = rootFrame; - } - - if (rootFrame.Content == null) - { - // Removes the turnstile navigation for startup. - if (rootFrame.ContentTransitions != null) - { - this.transitions = new TransitionCollection(); - foreach (var c in rootFrame.ContentTransitions) - { - this.transitions.Add(c); - } - } - - rootFrame.ContentTransitions = null; - rootFrame.Navigated += this.RootFrame_FirstNavigated; - - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - if (!rootFrame.Navigate(typeof(MainPage), e.Arguments)) - { - throw new Exception("Failed to create initial page"); - } - } - - // Ensure the current window is active - Window.Current.Activate(); - } - - /// - /// Restores the content transitions after the app has launched. - /// - /// The object where the handler is attached. - /// Details about the navigation event. - private void RootFrame_FirstNavigated(object sender, NavigationEventArgs e) - { - var rootFrame = sender as Frame; - rootFrame.ContentTransitions = this.transitions ?? new TransitionCollection() { new NavigationThemeTransition() }; - rootFrame.Navigated -= this.RootFrame_FirstNavigated; - } - - /// - /// Invoked when application execution is being suspended. Application state is saved - /// without knowing whether the application will be terminated or resumed with the contents - /// of memory still intact. - /// - /// The source of the suspend request. - /// Details about the suspend request. - private void OnSuspending(object sender, SuspendingEventArgs e) - { - var deferral = e.SuspendingOperation.GetDeferral(); - - // TODO: Save application state and stop any background activity - deferral.Complete(); - } - } -} \ No newline at end of file diff --git a/SampleApps/PhoneApplication/Assets/Logo.scale-240.png b/SampleApps/PhoneApplication/Assets/Logo.scale-240.png deleted file mode 100644 index 76921ca9..00000000 Binary files a/SampleApps/PhoneApplication/Assets/Logo.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/Assets/SmallLogo.scale-240.png b/SampleApps/PhoneApplication/Assets/SmallLogo.scale-240.png deleted file mode 100644 index 31663012..00000000 Binary files a/SampleApps/PhoneApplication/Assets/SmallLogo.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/Assets/SplashScreen.scale-240.png b/SampleApps/PhoneApplication/Assets/SplashScreen.scale-240.png deleted file mode 100644 index 33f26b33..00000000 Binary files a/SampleApps/PhoneApplication/Assets/SplashScreen.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/Assets/Square71x71Logo.scale-240.png b/SampleApps/PhoneApplication/Assets/Square71x71Logo.scale-240.png deleted file mode 100644 index cfa54bee..00000000 Binary files a/SampleApps/PhoneApplication/Assets/Square71x71Logo.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/Assets/StoreLogo.scale-240.png b/SampleApps/PhoneApplication/Assets/StoreLogo.scale-240.png deleted file mode 100644 index 47e084b5..00000000 Binary files a/SampleApps/PhoneApplication/Assets/StoreLogo.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/Assets/WideLogo.scale-240.png b/SampleApps/PhoneApplication/Assets/WideLogo.scale-240.png deleted file mode 100644 index 6249d29d..00000000 Binary files a/SampleApps/PhoneApplication/Assets/WideLogo.scale-240.png and /dev/null differ diff --git a/SampleApps/PhoneApplication/MainPage.xaml b/SampleApps/PhoneApplication/MainPage.xaml deleted file mode 100644 index 13b63d87..00000000 --- a/SampleApps/PhoneApplication/MainPage.xaml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SampleApps/PhoneApplication/MainPage.xaml.cs b/SampleApps/PhoneApplication/MainPage.xaml.cs deleted file mode 100644 index 4b9fde7d..00000000 --- a/SampleApps/PhoneApplication/MainPage.xaml.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using MapControl; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Navigation; - -namespace PhoneApplication -{ - public sealed partial class MainPage : Page - { - private bool mapCentered; - - public MainPage() - { - //BingMapsTileLayer.ApiKey = "..."; - - InitializeComponent(); - - DataContext = new ViewModel(Dispatcher); - NavigationCacheMode = NavigationCacheMode.Required; - } - - private void MapMenuItemClick(object sender, RoutedEventArgs e) - { - var tileLayers = (TileLayerCollection)Resources["TileLayers"]; - map.TileLayer = tileLayers[(string)((FrameworkElement)sender).Tag]; - } - - private void SeamarksChecked(object sender, RoutedEventArgs e) - { - var tileLayers = (TileLayerCollection)Resources["TileLayers"]; - map.TileLayers.Add(tileLayers["Seamarks"]); - } - - private void SeamarksUnchecked(object sender, RoutedEventArgs e) - { - var tileLayers = (TileLayerCollection)Resources["TileLayers"]; - map.TileLayers.Remove(tileLayers["Seamarks"]); - } - - private void CenterButtonClick(object sender, RoutedEventArgs e) - { - map.TargetCenter = ((ViewModel)DataContext).Location; - mapCentered = true; - } - - private void MapManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e) - { - mapCentered = false; - } - - private void MapManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e) - { - if (mapCentered) - { - e.Complete(); - } - else - { - map.TransformMap(e.Position, e.Delta.Translation, e.Delta.Rotation, e.Delta.Scale); - } - } - } - - public class ObjectReferenceConverter : IValueConverter - { - public object Convert(object value, Type targetType, object parameter, string language) - { - if (targetType == typeof(Visibility)) - { - return value != null ? Visibility.Visible : Visibility.Collapsed; - } - - return value != null; - } - - public object ConvertBack(object value, Type targetType, object parameter, string language) - { - throw new NotSupportedException(); - } - } -} diff --git a/SampleApps/PhoneApplication/Package.appxmanifest b/SampleApps/PhoneApplication/Package.appxmanifest deleted file mode 100644 index 146268de..00000000 --- a/SampleApps/PhoneApplication/Package.appxmanifest +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - XAML Map Control Phone Application - Clemens - Assets\StoreLogo.png - - - 6.3.1 - 6.3.1 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/PhoneApplication/PhoneApplication.csproj b/SampleApps/PhoneApplication/PhoneApplication.csproj deleted file mode 100644 index b32f7940..00000000 --- a/SampleApps/PhoneApplication/PhoneApplication.csproj +++ /dev/null @@ -1,92 +0,0 @@ - - - - - Debug - AnyCPU - {8D0A57DF-FABF-4AEE-8768-9C18B2B43CA9} - AppContainerExe - Properties - PhoneApplication - PhoneApplication - en-US - 8.1 - 12 - 512 - {76F1466A-8B6D-4E39-A767-685A06062A39};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Never - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP - prompt - 4 - - - AnyCPU - none - true - bin\Release\ - TRACE;NETFX_CORE;WINDOWS_PHONE_APP - prompt - 4 - - - - - {63cefdf7-5170-43b6-86f8-5c4a383a1615} - MapControl.WinRT - - - - - App.xaml - - - MainPage.xaml - - - - - - - Designer - - - - - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - 12.0 - - - WindowsPhoneApp - - - - \ No newline at end of file diff --git a/SampleApps/PhoneApplication/PhoneApplication.csproj.user b/SampleApps/PhoneApplication/PhoneApplication.csproj.user deleted file mode 100644 index 2a7fef14..00000000 --- a/SampleApps/PhoneApplication/PhoneApplication.csproj.user +++ /dev/null @@ -1,9 +0,0 @@ - - - - 20DCA81D-A315-40BC-9B83-B6A01D31DBC6 - - - 30F105C9-681E-420b-A277-7C086EAD8A4E - - \ No newline at end of file diff --git a/SampleApps/PhoneApplication/Properties/AssemblyInfo.cs b/SampleApps/PhoneApplication/Properties/AssemblyInfo.cs deleted file mode 100644 index 2bdda067..00000000 --- a/SampleApps/PhoneApplication/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("Windows Phone Sample Application")] -[assembly: AssemblyDescription("XAML Map Control Windows Phone Sample Application")] -[assembly: AssemblyProduct("XAML Map Control")] -[assembly: AssemblyCompany("Clemens Fischer")] -[assembly: AssemblyCopyright("© 2016 Clemens Fischer")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyVersion("2.14.0")] -[assembly: AssemblyFileVersion("2.14.0")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] diff --git a/SampleApps/PhoneApplication/ViewModel.cs b/SampleApps/PhoneApplication/ViewModel.cs deleted file mode 100644 index b7920176..00000000 --- a/SampleApps/PhoneApplication/ViewModel.cs +++ /dev/null @@ -1,77 +0,0 @@ -using System; -using System.ComponentModel; -using MapControl; -using Windows.Devices.Geolocation; -using Windows.UI.Core; - -namespace PhoneApplication -{ - public class ViewModel : INotifyPropertyChanged - { - private readonly CoreDispatcher dispatcher; - private readonly Geolocator geoLocator; - private double accuracy; - private Location location; - - public event PropertyChangedEventHandler PropertyChanged; - - public ViewModel(CoreDispatcher dispatcher) - { - this.dispatcher = dispatcher; - - geoLocator = new Geolocator - { - DesiredAccuracy = PositionAccuracy.High, - MovementThreshold = 1d - }; - - geoLocator.StatusChanged += GeoLocatorStatusChanged; - geoLocator.PositionChanged += GeoLocatorPositionChanged; - } - - public double Accuracy - { - get { return accuracy; } - private set - { - accuracy = value; - RaisePropertyChanged("Accuracy"); - } - } - - public Location Location - { - get { return location; } - private set - { - location = value; - RaisePropertyChanged("Location"); - } - } - - private void RaisePropertyChanged(string propertyName) - { - PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); - } - - private async void GeoLocatorStatusChanged(Geolocator sender, StatusChangedEventArgs args) - { - if (args.Status != PositionStatus.Initializing && - args.Status != PositionStatus.Ready) - { - await dispatcher.RunAsync(CoreDispatcherPriority.Low, () => Location = null); - } - } - - private async void GeoLocatorPositionChanged(Geolocator sender, PositionChangedEventArgs args) - { - await dispatcher.RunAsync(CoreDispatcherPriority.Low, () => - { - Accuracy = args.Position.Coordinate.Accuracy; - Location = new Location( - args.Position.Coordinate.Point.Position.Latitude, - args.Position.Coordinate.Point.Position.Longitude); - }); - } - } -} diff --git a/SampleApps/StoreApplication/App.xaml b/SampleApps/StoreApplication/App.xaml deleted file mode 100644 index d27be263..00000000 --- a/SampleApps/StoreApplication/App.xaml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/SampleApps/StoreApplication/App.xaml.cs b/SampleApps/StoreApplication/App.xaml.cs deleted file mode 100644 index 2f35ebf1..00000000 --- a/SampleApps/StoreApplication/App.xaml.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System; -using Windows.ApplicationModel; -using Windows.ApplicationModel.Activation; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; - -// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227 - -namespace StoreApplication -{ - /// - /// Provides application-specific behavior to supplement the default Application class. - /// - sealed partial class App : Application - { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - this.Suspending += OnSuspending; - } - - /// - /// Invoked when the application is launched normally by the end user. Other entry points - /// will be used when the application is launched to open a specific file, to display - /// search results, and so forth. - /// - /// Details about the launch request and process. - protected override void OnLaunched(LaunchActivatedEventArgs args) - { - Frame rootFrame = Window.Current.Content as Frame; - - // Do not repeat app initialization when the Window already has content, - // just ensure that the window is active - if (rootFrame == null) - { - // Create a Frame to act as the navigation context and navigate to the first page - rootFrame = new Frame(); - - if (args.PreviousExecutionState == ApplicationExecutionState.Terminated) - { - //TODO: Load state from previously suspended application - } - - // Place the frame in the current Window - Window.Current.Content = rootFrame; - } - - if (rootFrame.Content == null) - { - // When the navigation stack isn't restored navigate to the first page, - // configuring the new page by passing required information as a navigation - // parameter - if (!rootFrame.Navigate(typeof(MainPage), args.Arguments)) - { - throw new Exception("Failed to create initial page"); - } - } - // Ensure the current window is active - Window.Current.Activate(); - } - - /// - /// Invoked when application execution is being suspended. Application state is saved - /// without knowing whether the application will be terminated or resumed with the contents - /// of memory still intact. - /// - /// The source of the suspend request. - /// Details about the suspend request. - private void OnSuspending(object sender, SuspendingEventArgs e) - { - var deferral = e.SuspendingOperation.GetDeferral(); - //TODO: Save application state and stop any background activity - deferral.Complete(); - } - } -} diff --git a/SampleApps/StoreApplication/Assets/Logo.png b/SampleApps/StoreApplication/Assets/Logo.png deleted file mode 100644 index e26771cb..00000000 Binary files a/SampleApps/StoreApplication/Assets/Logo.png and /dev/null differ diff --git a/SampleApps/StoreApplication/Assets/SmallLogo.png b/SampleApps/StoreApplication/Assets/SmallLogo.png deleted file mode 100644 index 1eb0d9d5..00000000 Binary files a/SampleApps/StoreApplication/Assets/SmallLogo.png and /dev/null differ diff --git a/SampleApps/StoreApplication/Assets/SplashScreen.png b/SampleApps/StoreApplication/Assets/SplashScreen.png deleted file mode 100644 index c951e031..00000000 Binary files a/SampleApps/StoreApplication/Assets/SplashScreen.png and /dev/null differ diff --git a/SampleApps/StoreApplication/Assets/StoreLogo.png b/SampleApps/StoreApplication/Assets/StoreLogo.png deleted file mode 100644 index dcb67271..00000000 Binary files a/SampleApps/StoreApplication/Assets/StoreLogo.png and /dev/null differ diff --git a/SampleApps/StoreApplication/BindingHelper.cs b/SampleApps/StoreApplication/BindingHelper.cs deleted file mode 100644 index 86c8c722..00000000 --- a/SampleApps/StoreApplication/BindingHelper.cs +++ /dev/null @@ -1,36 +0,0 @@ -using MapControl; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Data; - -namespace StoreApplication -{ - public class BindingHelper - { - public static readonly DependencyProperty LocationPathProperty = DependencyProperty.RegisterAttached( - "LocationPath", typeof(string), typeof(BindingHelper), - new PropertyMetadata(null, LocationPathPropertyChanged)); - - public static string GetLocationPath(DependencyObject obj) - { - return (string)obj.GetValue(LocationPathProperty); - } - - public static void SetLocationPath(DependencyObject obj, string value) - { - obj.SetValue(LocationPathProperty, value); - } - - private static void LocationPathPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e) - { - var propertyPath = e.NewValue as string; - - if (propertyPath != null) - { - BindingOperations.SetBinding( - obj, - MapPanel.LocationProperty, - new Binding { Path = new PropertyPath(propertyPath) }); - } - } - } -} diff --git a/SampleApps/StoreApplication/Common/StandardStyles.xaml b/SampleApps/StoreApplication/Common/StandardStyles.xaml deleted file mode 100644 index 85f4ed64..00000000 --- a/SampleApps/StoreApplication/Common/StandardStyles.xaml +++ /dev/null @@ -1,1829 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Mouse - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/SampleApps/StoreApplication/MainPage.xaml b/SampleApps/StoreApplication/MainPage.xaml deleted file mode 100644 index be21dbdc..00000000 --- a/SampleApps/StoreApplication/MainPage.xaml +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OpenStreetMap - OpenCycleMap - Landscape - Outdoors - Transport - Transport Dark - MapQuest Open - - - - - - diff --git a/SampleApps/StoreApplication/MainPage.xaml.cs b/SampleApps/StoreApplication/MainPage.xaml.cs deleted file mode 100644 index dccccc5b..00000000 --- a/SampleApps/StoreApplication/MainPage.xaml.cs +++ /dev/null @@ -1,37 +0,0 @@ -using MapControl; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; - -namespace StoreApplication -{ - public sealed partial class MainPage : Page - { - public MainPage() - { - //TileImageLoader.Cache = new MapControl.Caching.ImageFileCache(); - //TileImageLoader.Cache = new MapControl.Caching.FileDbCache(); - //BingMapsTileLayer.ApiKey = "..."; - - this.InitializeComponent(); - } - - private void ImageOpacitySliderValueChanged(object sender, RangeBaseValueChangedEventArgs e) - { - if (mapImage != null) - { - mapImage.Opacity = e.NewValue / 100; - } - } - - private void SeamarksChecked(object sender, RoutedEventArgs e) - { - map.TileLayers.Add(((TileLayerCollection)Resources["TileLayers"])["Seamarks"]); - } - - private void SeamarksUnchecked(object sender, RoutedEventArgs e) - { - map.TileLayers.Remove(((TileLayerCollection)Resources["TileLayers"])["Seamarks"]); - } - } -} diff --git a/SampleApps/StoreApplication/Package.appxmanifest b/SampleApps/StoreApplication/Package.appxmanifest deleted file mode 100644 index 0b21a47e..00000000 --- a/SampleApps/StoreApplication/Package.appxmanifest +++ /dev/null @@ -1,31 +0,0 @@ - - - - - XAML Map Control Store Application - Clemens - Assets\StoreLogo.png - - - 6.3.0 - 6.3.0 - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/SampleApps/StoreApplication/Properties/AssemblyInfo.cs b/SampleApps/StoreApplication/Properties/AssemblyInfo.cs deleted file mode 100644 index f7fed63c..00000000 --- a/SampleApps/StoreApplication/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("Windows Runtime Sample Application")] -[assembly: AssemblyDescription("XAML Map Control Windows Runtime Sample Application")] -[assembly: AssemblyProduct("XAML Map Control")] -[assembly: AssemblyCompany("Clemens Fischer")] -[assembly: AssemblyCopyright("© 2015 Clemens Fischer")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("2.14.0")] -[assembly: AssemblyFileVersion("2.14.0")] -[assembly: AssemblyConfiguration("")] -[assembly: ComVisible(false)] diff --git a/SampleApps/StoreApplication/StoreApplication.csproj b/SampleApps/StoreApplication/StoreApplication.csproj deleted file mode 100644 index 9f88433e..00000000 --- a/SampleApps/StoreApplication/StoreApplication.csproj +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Debug - AnyCPU - {747A3F84-E11F-4EC8-9463-98BBB1E0D0A4} - AppContainerExe - Properties - StoreApplication - StoreApplication - en-US - 512 - {BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - StoreApplication_TemporaryKey.pfx - 8.1 - 12 - - Always - - - AnyCPU - true - full - false - bin\Debug\ - TRACE;DEBUG;NETFX_CORE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE;NETFX_CORE - prompt - 4 - - - - ViewModel.cs - - - App.xaml - - - - MainPage.xaml - - - - - - Designer - - - - - 10_535_330.jpg - - - - - - - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - - - {c7bf2b18-cc74-430b-bcb2-600304efa3d8} - FileDbCache.WinRT - - - {f789647e-96f7-43e3-a895-fa3fe8d01260} - ImageFileCache.WinRT - - - {63cefdf7-5170-43b6-86f8-5c4a383a1615} - MapControl.WinRT - - - - 12.0 - - - - \ No newline at end of file diff --git a/SampleApps/StoreApplication/StoreApplication.csproj.user b/SampleApps/StoreApplication/StoreApplication.csproj.user deleted file mode 100644 index 9cd85105..00000000 --- a/SampleApps/StoreApplication/StoreApplication.csproj.user +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file