├── .gitignore ├── .gitignore.save ├── BasecodeLibrary ├── .vs │ ├── BasecodeLibrary │ │ └── v14 │ │ │ └── .suo │ └── config │ │ └── applicationhost.config ├── BasecodeLibrary.sln ├── BasecodeLibrary.vssscc └── BasecodeLibrary │ ├── BasecodeLibrary.csproj │ ├── BasecodeLibrary.csproj.vspscc │ ├── BasecodeLibrary.nuget.props │ ├── BasecodeLibrary.nuget.targets │ ├── Controls │ ├── BaseCodePageContainer.xaml │ ├── BaseCodePageContainer.xaml.cs │ ├── ContextRibbon.cs │ ├── ContextRibbonItem.cs │ ├── ContextRibbonMenu.cs │ ├── ContextRibbonMenuItem.cs │ ├── ControlContainer.cs │ ├── FeedbackPopup.cs │ ├── FilterableContentList.cs │ ├── FilterableContentListItem.cs │ ├── FilterableContentListPanel.cs │ ├── FilterableImageWrapGrid.cs │ ├── PopupBase.cs │ ├── RateReminder.cs │ ├── SettingItem.cs │ ├── SettingItemSelector.cs │ ├── SettingsFlyout.cs │ ├── TemplateSelector │ │ └── RibbonControlDataTemplateSelector.cs │ └── YouTubeVideoPlayer.cs │ ├── Converters │ └── BoolToVisibilityConverter.cs │ ├── Enums │ └── BasecodeEnums.cs │ ├── Interfaces │ ├── IContextRibbonItem.cs │ ├── IFilterableItem.cs │ ├── ISerializableEnumerable.cs │ └── ISerializeableObject.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── BasecodeLibrary.rd.xml │ ├── SerializableObjects │ ├── FlagSaveObject.cs │ └── RateReminderSaveObject.cs │ ├── Themes │ ├── Generic.ContextRibbon.xaml │ ├── Generic.ContextRibbonItem.xaml │ ├── Generic.ContextRibbonMenu.xaml │ ├── Generic.ContextRibbonMenuItem.xaml │ ├── Generic.FeedbackPopup.xaml │ ├── Generic.FilterableContentList.xaml │ ├── Generic.FilterableContentListPanel.xaml │ ├── Generic.FilterableImageWrapGrid.xaml │ ├── Generic.PopupBase.xaml │ ├── Generic.RateReminder.xaml │ ├── Generic.YouTubeVideoPlayer.xaml │ └── Generic.xaml │ ├── Utilities │ ├── ApplicationServices.cs │ ├── BaseCodeEventArgs.cs │ ├── BasecodeEventHandler.cs │ ├── BasecodeRequestManager.cs │ ├── CommandHandler.cs │ ├── IBasecodeEventArgs.cs │ ├── ModelBase.cs │ ├── SaveManager.cs │ ├── SerializableEnumerable.cs │ └── ViewModelBase.cs │ ├── YouTube │ ├── YTEnums.cs │ ├── YouTubeException.cs │ ├── YouTubeJsonParser.cs │ ├── YouTubeModels │ │ ├── ModelBase.cs │ │ ├── YTChannelContentDetails.cs │ │ ├── YTChannelModel.cs │ │ ├── YTChannelsRequestResults.cs │ │ ├── YTIContentDetails.cs │ │ ├── YTItemModel.cs │ │ ├── YTPageInfoModel.cs │ │ ├── YTPlaylistDetailsRequestResults.cs │ │ ├── YTPlaylistModel.cs │ │ ├── YTPlaylistsContentDetails.cs │ │ ├── YTPlaylistsRequestResults.cs │ │ ├── YTRelatedPlaylistsModel.cs │ │ ├── YTSnipperModel.cs │ │ ├── YTThumbnailModel.cs │ │ ├── YTVideoContentDetails.cs │ │ ├── YTVideoDetailsContentDetails.cs │ │ ├── YTVideoDetailsRequestResults.cs │ │ └── YTVideoModel.cs │ ├── YouTubeServiceProxies.cs │ └── YouTubeServices.cs │ ├── obj │ └── Debug │ │ ├── Controls │ │ └── BaseCodePageContainer.g.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── project.json │ └── project.lock.json ├── LICENSE ├── README.md └── SandboxUWPApp ├── .vs └── SandboxUWPApp │ └── v14 │ └── .suo ├── SandboxUWPApp.sln ├── SandboxUWPApp.vssscc └── SandboxUWPApp ├── 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 ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── SandboxUWPApp.csproj ├── SandboxUWPApp.csproj.vspscc ├── SandboxUWPApp.nuget.props ├── SandboxUWPApp.nuget.targets ├── SandboxUWPApp_TemporaryKey.pfx ├── bin └── x86 │ └── Debug │ ├── App.xbf │ ├── AppX │ ├── AppxManifest.xml │ ├── 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 │ ├── BasecodeLibrary.dll │ ├── BasecodeLibrary │ │ └── BasecodeLibrary.xr.xml │ ├── ClrCompression.dll │ ├── Microsoft.CSharp.dll │ ├── Microsoft.VisualBasic.dll │ ├── Microsoft.Win32.Primitives.dll │ ├── Microsoft.Xaml.Interactions.dll │ ├── Microsoft.Xaml.Interactivity.dll │ ├── Newtonsoft.Json.dll │ ├── Properties │ │ └── Default.rd.xml │ ├── SandboxUWPApp.exe │ ├── SandboxUWPApp.xr.xml │ ├── System.AppContext.dll │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Immutable.dll │ ├── System.Collections.NonGeneric.dll │ ├── System.Collections.Specialized.dll │ ├── System.Collections.dll │ ├── System.ComponentModel.Annotations.dll │ ├── System.ComponentModel.DataAnnotations.dll │ ├── System.ComponentModel.EventBasedAsync.dll │ ├── System.ComponentModel.dll │ ├── System.Core.dll │ ├── System.Data.Common.dll │ ├── System.Diagnostics.Contracts.dll │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.Diagnostics.Tools.dll │ ├── System.Diagnostics.Tracing.dll │ ├── System.Dynamic.Runtime.dll │ ├── System.Globalization.Calendars.dll │ ├── System.Globalization.Extensions.dll │ ├── System.Globalization.dll │ ├── System.IO.Compression.ZipFile.dll │ ├── System.IO.Compression.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.IO.IsolatedStorage.dll │ ├── System.IO.UnmanagedMemoryStream.dll │ ├── System.IO.dll │ ├── System.Linq.Expressions.dll │ ├── System.Linq.Parallel.dll │ ├── System.Linq.Queryable.dll │ ├── System.Linq.dll │ ├── System.Net.Http.Rtc.dll │ ├── System.Net.Http.dll │ ├── System.Net.NetworkInformation.dll │ ├── System.Net.Primitives.dll │ ├── System.Net.Requests.dll │ ├── System.Net.Sockets.dll │ ├── System.Net.WebHeaderCollection.dll │ ├── System.Net.dll │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Numerics.dll │ ├── System.ObjectModel.dll │ ├── System.Private.DataContractSerialization.dll │ ├── System.Private.Networking.dll │ ├── System.Private.ServiceModel.dll │ ├── System.Private.Uri.dll │ ├── System.Reflection.Context.dll │ ├── System.Reflection.DispatchProxy.dll │ ├── System.Reflection.Emit.ILGeneration.dll │ ├── System.Reflection.Emit.Lightweight.dll │ ├── System.Reflection.Emit.dll │ ├── System.Reflection.Extensions.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Reflection.Primitives.dll │ ├── System.Reflection.TypeExtensions.dll │ ├── System.Reflection.dll │ ├── System.Resources.ResourceManager.dll │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Handles.dll │ ├── System.Runtime.InteropServices.WindowsRuntime.dll │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.Numerics.dll │ ├── System.Runtime.Serialization.Json.dll │ ├── System.Runtime.Serialization.Primitives.dll │ ├── System.Runtime.Serialization.Xml.dll │ ├── System.Runtime.Serialization.dll │ ├── System.Runtime.WindowsRuntime.UI.Xaml.dll │ ├── System.Runtime.WindowsRuntime.dll │ ├── System.Runtime.dll │ ├── System.Security.Claims.dll │ ├── System.Security.Principal.dll │ ├── System.ServiceModel.Duplex.dll │ ├── System.ServiceModel.Http.dll │ ├── System.ServiceModel.NetTcp.dll │ ├── System.ServiceModel.Primitives.dll │ ├── System.ServiceModel.Security.dll │ ├── System.ServiceModel.Web.dll │ ├── System.ServiceModel.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.dll │ ├── System.Text.RegularExpressions.dll │ ├── System.Threading.Overlapped.dll │ ├── System.Threading.Tasks.Dataflow.dll │ ├── System.Threading.Tasks.Parallel.dll │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Timer.dll │ ├── System.Threading.dll │ ├── System.Windows.dll │ ├── System.Xml.Linq.dll │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.Serialization.dll │ ├── System.Xml.XDocument.dll │ ├── System.Xml.XmlDocument.dll │ ├── System.Xml.XmlSerializer.dll │ ├── System.Xml.dll │ ├── System.dll │ ├── WinMetadata │ │ └── Windows.winmd │ ├── entrypoint │ │ └── SandboxUWPApp.exe │ ├── resources.pri │ └── vs.appxrecipe │ ├── AppxManifest.xml │ ├── BasecodeLibrary.dll │ ├── BasecodeLibrary.pdb │ ├── BasecodeLibrary.pri │ ├── ClrCompression.dll │ ├── Core │ ├── AppxManifest.xml │ └── SandboxUWPApp.exe │ ├── MainPage.xbf │ ├── Microsoft.CSharp.dll │ ├── Microsoft.VisualBasic.dll │ ├── Microsoft.Win32.Primitives.dll │ ├── Newtonsoft.Json.dll │ ├── SandboxUWPApp.build.appxrecipe │ ├── SandboxUWPApp.exe │ ├── SandboxUWPApp.pdb │ ├── SandboxUWPApp.xr.xml │ ├── System.AppContext.dll │ ├── System.Collections.Concurrent.dll │ ├── System.Collections.Immutable.dll │ ├── System.Collections.NonGeneric.dll │ ├── System.Collections.Specialized.dll │ ├── System.Collections.dll │ ├── System.ComponentModel.Annotations.dll │ ├── System.ComponentModel.DataAnnotations.dll │ ├── System.ComponentModel.EventBasedAsync.dll │ ├── System.ComponentModel.dll │ ├── System.Core.dll │ ├── System.Data.Common.dll │ ├── System.Diagnostics.Contracts.dll │ ├── System.Diagnostics.Debug.dll │ ├── System.Diagnostics.StackTrace.dll │ ├── System.Diagnostics.Tools.dll │ ├── System.Diagnostics.Tracing.dll │ ├── System.Dynamic.Runtime.dll │ ├── System.Globalization.Calendars.dll │ ├── System.Globalization.Extensions.dll │ ├── System.Globalization.dll │ ├── System.IO.Compression.ZipFile.dll │ ├── System.IO.Compression.dll │ ├── System.IO.FileSystem.Primitives.dll │ ├── System.IO.FileSystem.dll │ ├── System.IO.IsolatedStorage.dll │ ├── System.IO.UnmanagedMemoryStream.dll │ ├── System.IO.dll │ ├── System.Linq.Expressions.dll │ ├── System.Linq.Parallel.dll │ ├── System.Linq.Queryable.dll │ ├── System.Linq.dll │ ├── System.Net.Http.Rtc.dll │ ├── System.Net.Http.dll │ ├── System.Net.NetworkInformation.dll │ ├── System.Net.Primitives.dll │ ├── System.Net.Requests.dll │ ├── System.Net.Sockets.dll │ ├── System.Net.WebHeaderCollection.dll │ ├── System.Net.dll │ ├── System.Numerics.Vectors.WindowsRuntime.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Numerics.dll │ ├── System.ObjectModel.dll │ ├── System.Private.DataContractSerialization.dll │ ├── System.Private.Networking.dll │ ├── System.Private.ServiceModel.dll │ ├── System.Private.Uri.dll │ ├── System.Reflection.Context.dll │ ├── System.Reflection.DispatchProxy.dll │ ├── System.Reflection.Emit.ILGeneration.dll │ ├── System.Reflection.Emit.Lightweight.dll │ ├── System.Reflection.Emit.dll │ ├── System.Reflection.Extensions.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Reflection.Primitives.dll │ ├── System.Reflection.TypeExtensions.dll │ ├── System.Reflection.dll │ ├── System.Resources.ResourceManager.dll │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Handles.dll │ ├── System.Runtime.InteropServices.WindowsRuntime.dll │ ├── System.Runtime.InteropServices.dll │ ├── System.Runtime.Numerics.dll │ ├── System.Runtime.Serialization.Json.dll │ ├── System.Runtime.Serialization.Primitives.dll │ ├── System.Runtime.Serialization.Xml.dll │ ├── System.Runtime.Serialization.dll │ ├── System.Runtime.WindowsRuntime.UI.Xaml.dll │ ├── System.Runtime.WindowsRuntime.dll │ ├── System.Runtime.dll │ ├── System.Security.Claims.dll │ ├── System.Security.Principal.dll │ ├── System.ServiceModel.Duplex.dll │ ├── System.ServiceModel.Http.dll │ ├── System.ServiceModel.NetTcp.dll │ ├── System.ServiceModel.Primitives.dll │ ├── System.ServiceModel.Security.dll │ ├── System.ServiceModel.Web.dll │ ├── System.ServiceModel.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Text.Encoding.Extensions.dll │ ├── System.Text.Encoding.dll │ ├── System.Text.RegularExpressions.dll │ ├── System.Threading.Overlapped.dll │ ├── System.Threading.Tasks.Dataflow.dll │ ├── System.Threading.Tasks.Parallel.dll │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Timer.dll │ ├── System.Threading.dll │ ├── System.Windows.dll │ ├── System.Xml.Linq.dll │ ├── System.Xml.ReaderWriter.dll │ ├── System.Xml.Serialization.dll │ ├── System.Xml.XDocument.dll │ ├── System.Xml.XmlDocument.dll │ ├── System.Xml.XmlSerializer.dll │ ├── System.Xml.dll │ ├── System.dll │ └── resources.pri ├── obj ├── ARM │ └── Debug │ │ ├── App.g.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── SandboxUWPApp.csproj.nuget.cache └── x86 │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── App.xaml │ ├── App.xbf │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── FxResources.Microsoft.CSharp.SR.resw │ ├── FxResources.Microsoft.VisualBasic.SR.resw │ ├── FxResources.System.AppContext.SR.resw │ ├── FxResources.System.Buffers.SR.resw │ ├── FxResources.System.Collections.Concurrent.SR.resw │ ├── FxResources.System.Collections.Immutable.SR.resw │ ├── FxResources.System.Collections.NonGeneric.SR.resw │ ├── FxResources.System.Collections.SR.resw │ ├── FxResources.System.Collections.Specialized.SR.resw │ ├── FxResources.System.ComponentModel.Annotations.SR.resw │ ├── FxResources.System.ComponentModel.EventBasedAsync.SR.resw │ ├── FxResources.System.ComponentModel.Primitives.SR.resw │ ├── FxResources.System.ComponentModel.TypeConverter.SR.resw │ ├── FxResources.System.Console.SR.resw │ ├── FxResources.System.Data.Common.SR.resw │ ├── FxResources.System.Diagnostics.Debug.SR.resw │ ├── FxResources.System.Dynamic.Runtime.SR.resw │ ├── FxResources.System.Globalization.Extensions.SR.resw │ ├── FxResources.System.IO.Compression.SR.resw │ ├── FxResources.System.IO.Compression.ZipFile.SR.resw │ ├── FxResources.System.IO.FileSystem.SR.resw │ ├── FxResources.System.IO.IsolatedStorage.SR.resw │ ├── FxResources.System.IO.SR.resw │ ├── FxResources.System.IO.UnmanagedMemoryStream.SR.resw │ ├── FxResources.System.Linq.Expressions.SR.resw │ ├── FxResources.System.Linq.Parallel.SR.resw │ ├── FxResources.System.Linq.Queryable.SR.resw │ ├── FxResources.System.Linq.SR.resw │ ├── FxResources.System.Net.Http.SR.resw │ ├── FxResources.System.Net.NameResolution.SR.resw │ ├── FxResources.System.Net.NetworkInformation.SR.resw │ ├── FxResources.System.Net.Primitives.SR.resw │ ├── FxResources.System.Net.Requests.SR.resw │ ├── FxResources.System.Net.Sockets.SR.resw │ ├── FxResources.System.Net.WebHeaderCollection.SR.resw │ ├── FxResources.System.Net.WebSockets.Client.SR.resw │ ├── FxResources.System.Net.WebSockets.SR.resw │ ├── FxResources.System.Numerics.Vectors.SR.resw │ ├── FxResources.System.ObjectModel.SR.resw │ ├── FxResources.System.Private.DataContractSerialization.SR.resw │ ├── FxResources.System.Private.Networking.SR.resw │ ├── FxResources.System.Private.ServiceModel.SR.resw │ ├── FxResources.System.Private.Uri.SR.resw │ ├── FxResources.System.Reflection.Context.SR.resw │ ├── FxResources.System.Reflection.DispatchProxy.SR.resw │ ├── FxResources.System.Reflection.Metadata.SR.resw │ ├── FxResources.System.Runtime.Extensions.SR.resw │ ├── FxResources.System.Runtime.InteropServices.RuntimeInformation.SR.resw │ ├── FxResources.System.Runtime.InteropServices.SR.resw │ ├── FxResources.System.Runtime.Numerics.SR.resw │ ├── FxResources.System.Runtime.Serialization.Formatters.SR.resw │ ├── FxResources.System.Runtime.Serialization.Primitives.SR.resw │ ├── FxResources.System.Runtime.WindowsRuntime.SR.resw │ ├── FxResources.System.Runtime.WindowsRuntime.UI.Xaml.SR.resw │ ├── FxResources.System.Security.Claims.SR.resw │ ├── FxResources.System.Security.Cryptography.Algorithms.SR.resw │ ├── FxResources.System.Security.Cryptography.Cng.SR.resw │ ├── FxResources.System.Security.Cryptography.Encoding.SR.resw │ ├── FxResources.System.Security.Cryptography.Primitives.SR.resw │ ├── FxResources.System.Security.Cryptography.X509Certificates.SR.resw │ ├── FxResources.System.Text.Encoding.CodePages.SR.resw │ ├── FxResources.System.Text.RegularExpressions.SR.resw │ ├── FxResources.System.Threading.Overlapped.SR.resw │ ├── FxResources.System.Threading.SR.resw │ ├── FxResources.System.Threading.Tasks.Dataflow.SR.resw │ ├── FxResources.System.Threading.Tasks.Parallel.SR.resw │ ├── FxResources.System.Xml.ReaderWriter.SR.resw │ ├── FxResources.System.Xml.XDocument.SR.resw │ ├── FxResources.System.Xml.XmlDocument.SR.resw │ ├── FxResources.System.Xml.XmlSerializer.SR.resw │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── MainPage.xaml │ ├── MainPage.xbf │ ├── Microsoft.Xaml.Interactions.pri.xml │ ├── Microsoft.Xaml.Interactivity.pri.xml │ ├── MultipleQualifiersPerDimensionFound.txt │ ├── ProjectArchitectures.txt │ ├── ResourceHandlingTask.state │ ├── SandboxUWPApp.csproj.CopyComplete │ ├── SandboxUWPApp.csproj.CoreCompileInputs.cache │ ├── SandboxUWPApp.csproj.FileListAbsolute.txt │ ├── SandboxUWPApp.csproj.GenerateResource.Cache │ ├── SandboxUWPApp.csprojAssemblyReference.cache │ ├── SandboxUWPApp.csprojResolveAssemblyReference.cache │ ├── SandboxUWPApp.exe │ ├── SandboxUWPApp.pdb │ ├── SandboxUWPApp.xr.xml │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── XamlSaveStateFile.xml │ ├── XamlTypeInfo.g.cs │ ├── XamlTypeInfo.g.cs.backup │ ├── embed.resfiles │ ├── embed.resfiles.intermediate │ ├── intermediatexaml │ ├── SandboxUWPApp.exe │ └── SandboxUWPApp.pdb │ ├── layout.resfiles │ ├── layout.resfiles.intermediate │ ├── pri.resfiles │ ├── pri.resfiles.intermediate │ ├── priconfig.xml │ ├── priconfig.xml.intermediate │ ├── qualifiers.txt │ ├── qualifiers.txt.intermediate │ ├── resources.resfiles │ └── resources.resfiles.intermediate ├── project.json └── project.lock.json /.gitignore: -------------------------------------------------------------------------------- 1 | BasecodeLibrary/BasecodeLibrary/obj 2 | BasecodeLibrary/BasecodeLibrary/bin 3 | /BasecodeLibrary/.vs/BasecodeLibrary 4 | /SandboxUWPApp/.vs/SandboxUWPApp 5 | -------------------------------------------------------------------------------- /.gitignore.save: -------------------------------------------------------------------------------- 1 | SandboxUWPApp/.vs/SandboxUWPApp/v15/Server/sqlite3/db.lock 2 | -------------------------------------------------------------------------------- /BasecodeLibrary/.vs/BasecodeLibrary/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/BasecodeLibrary/.vs/BasecodeLibrary/v14/.suo -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25123.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BasecodeLibrary", "BasecodeLibrary\BasecodeLibrary.csproj", "{5D802867-0FDC-49DE-BAF4-AB5628F6F72F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Debug|ARM = Debug|ARM 12 | Debug|x64 = Debug|x64 13 | Debug|x86 = Debug|x86 14 | Release|Any CPU = Release|Any CPU 15 | Release|ARM = Release|ARM 16 | Release|x64 = Release|x64 17 | Release|x86 = Release|x86 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|ARM.ActiveCfg = Debug|ARM 23 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|ARM.Build.0 = Debug|ARM 24 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|x64.ActiveCfg = Debug|x64 25 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|x64.Build.0 = Debug|x64 26 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|x86.ActiveCfg = Debug|x86 27 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Debug|x86.Build.0 = Debug|x86 28 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|Any CPU.ActiveCfg = Release|Any CPU 29 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|Any CPU.Build.0 = Release|Any CPU 30 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|ARM.ActiveCfg = Release|ARM 31 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|ARM.Build.0 = Release|ARM 32 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|x64.ActiveCfg = Release|x64 33 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|x64.Build.0 = Release|x64 34 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|x86.ActiveCfg = Release|x86 35 | {5D802867-0FDC-49DE-BAF4-AB5628F6F72F}.Release|x86.Build.0 = Release|x86 36 | EndGlobalSection 37 | GlobalSection(SolutionProperties) = preSolution 38 | HideSolutionNode = FALSE 39 | EndGlobalSection 40 | GlobalSection(TeamFoundationVersionControl) = preSolution 41 | SccNumberOfProjects = 2 42 | SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} 43 | SccTeamFoundationServer = https://rtapplications.visualstudio.com/defaultcollection 44 | SccLocalPath0 = . 45 | SccProjectUniqueName1 = BasecodeLibrary\\BasecodeLibrary.csproj 46 | SccProjectName1 = BasecodeLibrary 47 | SccLocalPath1 = BasecodeLibrary 48 | EndGlobalSection 49 | EndGlobal 50 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary.vssscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" 10 | } 11 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/BasecodeLibrary.csproj.vspscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" 10 | } 11 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/BasecodeLibrary.nuget.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | C:\Users\Anthony\Source\Repos\UWPLibrary\BasecodeLibrary\BasecodeLibrary\project.lock.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Anthony\.nuget\packages\ 9 | ProjectJson 10 | 5.0.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/BasecodeLibrary.nuget.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/BaseCodePageContainer.xaml: -------------------------------------------------------------------------------- 1 |  9 | 10 | 11 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/ContextRibbon.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Interfaces; 2 | using System.Collections.ObjectModel; 3 | using Windows.UI.Xaml; 4 | using Windows.UI.Xaml.Controls; 5 | 6 | namespace BasecodeLibrary.Controls 7 | { 8 | public class ContextRibbon : ItemsControl 9 | { 10 | 11 | /// 12 | /// All of the available items to filter 13 | /// 14 | public ObservableCollection ContentItems 15 | { 16 | get { return (ObservableCollection)GetValue(ContentItemsProperty); } 17 | set { SetValue(ContentItemsProperty, value); } 18 | } 19 | 20 | public static readonly DependencyProperty ContentItemsProperty = 21 | DependencyProperty.Register("ContentItems", 22 | typeof(ObservableCollection), typeof(ContextRibbon), 23 | new PropertyMetadata(null, OnContentChanged)); 24 | 25 | public ContextRibbon() 26 | { 27 | DefaultStyleKey = typeof(ContextRibbon); 28 | } 29 | 30 | protected override void OnApplyTemplate() 31 | { 32 | base.OnApplyTemplate(); 33 | } 34 | private static void OnContentChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e) 35 | { 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/ContextRibbonItem.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Interfaces; 2 | using System.Windows.Input; 3 | using Windows.UI.Xaml; 4 | using Windows.UI.Xaml.Controls; 5 | using Windows.UI.Xaml.Markup; 6 | 7 | namespace BasecodeLibrary.Controls 8 | { 9 | public class ContextRibbonItem : ControlContainer, IContextRibbonItem 10 | { 11 | 12 | public Symbol ButtonIcon 13 | { 14 | get { return (Symbol)GetValue(ButtonIconProperty); } 15 | set { SetValue(ButtonIconProperty, value); } 16 | } 17 | 18 | public static readonly DependencyProperty ButtonIconProperty = 19 | DependencyProperty.Register("ButtonIcon", typeof(Symbol), typeof(ContextRibbonItem), new PropertyMetadata(Symbol.Stop)); 20 | 21 | public string ButtonText 22 | { 23 | get { return (string)GetValue(ButtonTextProperty); } 24 | set { SetValue(ButtonTextProperty, value); } 25 | } 26 | 27 | public static readonly DependencyProperty ButtonTextProperty = 28 | DependencyProperty.Register("ButtonText", typeof(string), typeof(ContextRibbonItem), new PropertyMetadata(string.Empty)); 29 | 30 | public string ButtonToolTip 31 | { 32 | get { return (string)GetValue(ButtonToolTipProperty); } 33 | set { SetValue(ButtonToolTipProperty, value); } 34 | } 35 | 36 | public static readonly DependencyProperty ButtonToolTipProperty = 37 | DependencyProperty.Register("ButtonToolTip", typeof(string), typeof(ContextRibbonItem), new PropertyMetadata(string.Empty)); 38 | 39 | public ICommand Command 40 | { 41 | get { return (ICommand)GetValue(CommandProperty); } 42 | set { SetValue(CommandProperty, value); } 43 | } 44 | 45 | public static readonly DependencyProperty CommandProperty = 46 | DependencyProperty.Register("Command", typeof(ICommand), typeof(ContextRibbonItem), new PropertyMetadata(null)); 47 | 48 | public ContextRibbonItem() 49 | { 50 | DefaultStyleKey = typeof(ContextRibbonItem); 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/ContextRibbonMenu.cs: -------------------------------------------------------------------------------- 1 |  2 | using BasecodeLibrary.Interfaces; 3 | using System; 4 | using System.Collections.ObjectModel; 5 | using Windows.UI.Xaml; 6 | using Windows.UI.Xaml.Controls; 7 | using Windows.UI.Xaml.Markup; 8 | 9 | namespace BasecodeLibrary.Controls 10 | { 11 | public class ContextRibbonMenu : Button, IContextRibbonItem 12 | { 13 | public ObservableCollection ContentItems 14 | { 15 | get { return (ObservableCollection)GetValue(ContentItemsProperty); } 16 | set { SetValue(ContentItemsProperty, value); } 17 | } 18 | 19 | public static readonly DependencyProperty ContentItemsProperty = 20 | DependencyProperty.Register("ContentItems", 21 | typeof(ObservableCollection), typeof(ContextRibbonMenu), 22 | new PropertyMetadata(new ObservableCollection(), OnContentChanged)); 23 | 24 | public ContextRibbonMenu() 25 | { 26 | DefaultStyleKey = typeof(ContextRibbonMenu); 27 | } 28 | 29 | private static void OnContentChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e) 30 | { 31 | } 32 | 33 | protected override void OnApplyTemplate() 34 | { 35 | base.OnApplyTemplate(); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/ContextRibbonMenuItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Input; 7 | using Windows.UI.Xaml; 8 | using Windows.UI.Xaml.Controls; 9 | 10 | namespace BasecodeLibrary.Controls 11 | { 12 | public class ContextRibbonMenuItem : ControlContainer 13 | { 14 | public Symbol ButtonIcon 15 | { 16 | get { return (Symbol)GetValue(ButtonIconProperty); } 17 | set { SetValue(ButtonIconProperty, value); } 18 | } 19 | 20 | public static readonly DependencyProperty ButtonIconProperty = 21 | DependencyProperty.Register("ButtonIcon", typeof(Symbol), typeof(ContextRibbonMenuItem), new PropertyMetadata(Symbol.Stop)); 22 | 23 | public string ButtonText 24 | { 25 | get { return (string)GetValue(ButtonTextProperty); } 26 | set { SetValue(ButtonTextProperty, value); } 27 | } 28 | 29 | public static readonly DependencyProperty ButtonTextProperty = 30 | DependencyProperty.Register("ButtonText", typeof(string), typeof(ContextRibbonMenuItem), new PropertyMetadata(string.Empty)); 31 | 32 | public string ButtonToolTip 33 | { 34 | get { return (string)GetValue(ButtonToolTipProperty); } 35 | set { SetValue(ButtonToolTipProperty, value); } 36 | } 37 | 38 | public static readonly DependencyProperty ButtonToolTipProperty = 39 | DependencyProperty.Register("ButtonToolTip", typeof(string), typeof(ContextRibbonMenuItem), new PropertyMetadata(string.Empty)); 40 | 41 | public ICommand Command 42 | { 43 | get { return (ICommand)GetValue(CommandProperty); } 44 | set { SetValue(CommandProperty, value); } 45 | } 46 | 47 | public static readonly DependencyProperty CommandProperty = 48 | DependencyProperty.Register("Command", typeof(ICommand), typeof(ContextRibbonMenuItem), new PropertyMetadata(null)); 49 | 50 | public ContextRibbonMenuItem() 51 | { 52 | DefaultStyleKey = typeof(ContextRibbonMenuItem); 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/ControlContainer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.UI.Xaml; 8 | using Windows.UI.Xaml.Controls; 9 | using Windows.UI.Xaml.Markup; 10 | 11 | namespace BasecodeLibrary.Controls 12 | { 13 | /// 14 | /// This class is the main BaseCodeLibrary control container 15 | /// It contains top level control functionality 16 | /// 17 | [ContentProperty(Name = "ControlContent")] 18 | public class ControlContainer : Control, INotifyPropertyChanged 19 | { 20 | /// 21 | /// IsBusy toggles the busy indicator for the entire control 22 | /// 23 | public bool IsBusy 24 | { 25 | get { return (bool)GetValue(IsBusyProperty); } 26 | set { SetValue(IsBusyProperty, value); } 27 | } 28 | 29 | public static readonly DependencyProperty IsBusyProperty = 30 | DependencyProperty.Register("IsBusy", typeof(bool), typeof(ControlContainer), new PropertyMetadata(false, OnIsBusyChanged)); 31 | 32 | /// 33 | /// Content contained inside of this container 34 | /// 35 | public UIElement ControlContent 36 | { 37 | get { return (UIElement)GetValue(ControlContentProperty); } 38 | set { SetValue(ControlContentProperty, value); } 39 | } 40 | 41 | // Using a DependencyProperty as the backing store for ControlContent. This enables animation, styling, binding, etc... 42 | public static readonly DependencyProperty ControlContentProperty = 43 | DependencyProperty.Register("ControlContent", typeof(UIElement), typeof(ControlContainer), new PropertyMetadata(null)); 44 | 45 | public event EventHandler IsBusyChanged; 46 | 47 | /// 48 | /// Toggles the busy indicator for the control container 49 | /// 50 | /// 51 | /// 52 | public static void OnIsBusyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args) 53 | { 54 | ControlContainer pageContainer = obj as ControlContainer; 55 | if (pageContainer != null) 56 | { 57 | bool isBusy = pageContainer.IsBusy; 58 | pageContainer.IsEnabled = !isBusy; 59 | 60 | if (pageContainer.IsBusyChanged != null) 61 | { 62 | pageContainer.IsBusyChanged(obj, new EventArgs()); 63 | } 64 | } 65 | } 66 | 67 | public void OnPropertyChanged(String prop) 68 | { 69 | PropertyChangedEventHandler handler = PropertyChanged; 70 | 71 | if (handler != null) 72 | { 73 | PropertyChanged(this, new PropertyChangedEventArgs(prop)); 74 | } 75 | } 76 | 77 | public event PropertyChangedEventHandler PropertyChanged; 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/FilterableContentListItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.Foundation; 7 | using Windows.UI.Xaml; 8 | using Windows.UI.Xaml.Controls; 9 | using Windows.UI.Xaml.Markup; 10 | 11 | namespace BasecodeLibrary.Controls 12 | { 13 | /// 14 | /// The root list item for FilterableContentList 15 | /// 16 | [ContentProperty(Name = "DataObject")] 17 | public class FilterableContentListItem 18 | { 19 | /// 20 | /// Content Title 21 | /// 22 | public string ContentTitle 23 | { 24 | get; 25 | set; 26 | } 27 | 28 | /// 29 | /// Short description of content 30 | /// 31 | public string ContentShortDescription 32 | { 33 | get; 34 | set; 35 | } 36 | 37 | /// 38 | /// Image url or uri 39 | /// 40 | public Uri ImageURI 41 | { 42 | get; 43 | set; 44 | } 45 | 46 | /// 47 | /// The object being represented 48 | /// 49 | public Object DataObject 50 | { 51 | get; 52 | set; 53 | } 54 | 55 | /// 56 | /// Dimensions for the image 57 | /// 58 | public Point ImageDimensions 59 | { 60 | get; 61 | set; 62 | } 63 | 64 | /// 65 | /// Returns true if the item has details 66 | /// 67 | public bool HasDetails 68 | { 69 | get { return !String.IsNullOrEmpty(Details); } 70 | } 71 | 72 | /// 73 | /// Details about the object 74 | /// 75 | public string Details 76 | { 77 | get; 78 | set; 79 | } 80 | 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/FilterableContentListPanel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml; 7 | using Windows.UI.Xaml.Controls; 8 | 9 | namespace BasecodeLibrary.Controls 10 | { 11 | public class FilterableContentListPanel : FilterableContentList 12 | { 13 | /// 14 | /// Set the list collapsed 15 | /// 16 | public bool IsCollapsed { get; private set; } 17 | 18 | #region Template Parts 19 | 20 | private Grid partListGrid { get; set; } 21 | private TextBox partFilterTextBox { get; set; } 22 | private ListBox partFilteredListBox { get; set; } 23 | private Button partExpanderButton { get; set; } 24 | 25 | #endregion 26 | 27 | public FilterableContentListPanel() 28 | { 29 | DefaultStyleKey = typeof(FilterableContentListPanel); 30 | } 31 | 32 | protected override void OnApplyTemplate() 33 | { 34 | partListGrid = GetTemplateChild("PART_ListGrid") as Grid; 35 | partExpanderButton = GetTemplateChild("PART_ExpanderButton") as Button; 36 | partFilterTextBox = GetTemplateChild("PART_FilterTextBox") as TextBox; 37 | partFilteredListBox = GetTemplateChild("PART_FilteredListBox") as ListBox; 38 | 39 | if (partExpanderButton != null && 40 | partListGrid != null && 41 | partFilterTextBox != null && 42 | partFilteredListBox != null) 43 | { 44 | partExpanderButton.Click += (s, a) => 45 | { 46 | if (!IsCollapsed) 47 | { 48 | partFilteredListBox.Visibility = Visibility.Collapsed; 49 | partFilterTextBox.Visibility = Visibility.Collapsed; 50 | partListGrid.Width = 40; 51 | IsCollapsed = true; 52 | } 53 | else 54 | { 55 | partListGrid.Width = 300; 56 | partFilteredListBox.Visibility = Visibility.Visible; 57 | partFilterTextBox.Visibility = Visibility.Visible; 58 | IsCollapsed = false; 59 | } 60 | }; 61 | } 62 | 63 | base.OnApplyTemplate(); 64 | } 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/FilterableImageWrapGrid.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Collections.ObjectModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.Foundation; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | 11 | namespace BasecodeLibrary.Controls 12 | { 13 | public class FilterableImageWrapGrid : FilterableContentList 14 | { 15 | public FilterableImageWrapGrid() 16 | { 17 | DefaultStyleKey = typeof(FilterableImageWrapGrid); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/SettingItem.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Enums; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.UI.Xaml; 8 | using static BasecodeLibrary.Enums.BasecodeEnums; 9 | 10 | namespace BasecodeLibrary.Controls 11 | { 12 | public class SettingItem : ControlContainer 13 | { 14 | /// 15 | /// The label text that will be displayed left of your input setting. 16 | /// 17 | public string Label 18 | { 19 | get { return (string)GetValue(LabelProperty); } 20 | set { SetValue(LabelProperty, value); } 21 | } 22 | 23 | public static readonly DependencyProperty LabelProperty = 24 | DependencyProperty.Register("Label", typeof(string), typeof(SettingItem), new PropertyMetadata(String.Empty)); 25 | 26 | /// 27 | /// The type of input that you'd like. 28 | /// DEFAULT: String 29 | /// 30 | public SettingsType SettingType 31 | { 32 | get { return (SettingsType)GetValue(SettingTypeProperty); } 33 | set { SetValue(SettingTypeProperty, value); } 34 | } 35 | 36 | public static readonly DependencyProperty SettingTypeProperty = 37 | DependencyProperty.Register("SettingType", typeof(BasecodeEnums.SettingsType), typeof(SettingItem), new PropertyMetadata(SettingsType._string)); 38 | 39 | /// 40 | /// The databinding path. 41 | /// Example: BindingPath="SomePropertyInYourDataContext" 42 | /// 43 | public string BindingPath 44 | { 45 | get { return (string)GetValue(BindingPathProperty); } 46 | set { SetValue(BindingPathProperty, value); } 47 | } 48 | 49 | public static readonly DependencyProperty BindingPathProperty = 50 | DependencyProperty.Register("BindingPath", typeof(string), typeof(SettingItem), new PropertyMetadata(String.Empty)); 51 | 52 | public string ToolTip 53 | { 54 | get { return (string)GetValue(ToolTipProperty); } 55 | set { SetValue(ToolTipProperty, value); } 56 | } 57 | 58 | public static readonly DependencyProperty ToolTipProperty = 59 | DependencyProperty.Register("ToolTip", typeof(string), typeof(SettingItem), new PropertyMetadata(String.Empty)); 60 | 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/SettingItemSelector.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml; 7 | using Windows.UI.Xaml.Markup; 8 | 9 | namespace BasecodeLibrary.Controls 10 | { 11 | [ContentProperty(Name = "Items")] 12 | public class SettingItemSelector : SettingItem 13 | { 14 | public List Items 15 | { 16 | get { return (List)GetValue(ItemsProperty); } 17 | set { SetValue(ItemsProperty, value); } 18 | } 19 | 20 | public static readonly DependencyProperty ItemsProperty = 21 | DependencyProperty.Register("Items", typeof(List), typeof(SettingItemSelector), new PropertyMetadata(new List())); 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Controls/TemplateSelector/RibbonControlDataTemplateSelector.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml; 7 | using Windows.UI.Xaml.Controls; 8 | 9 | namespace BasecodeLibrary.Controls.TemplateSelector 10 | { 11 | public class RibbonControlDataTemplateSelector : DataTemplateSelector 12 | { 13 | public DataTemplate ContextRibbonItemDataTemplate { get; set; } 14 | public DataTemplate ContextRibbonMenuDataTemplate { get; set; } 15 | 16 | protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) 17 | { 18 | if (item is ContextRibbonItem) 19 | { 20 | return ContextRibbonItemDataTemplate; 21 | } 22 | else 23 | { 24 | return ContextRibbonMenuDataTemplate; 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml; 7 | using Windows.UI.Xaml.Data; 8 | 9 | namespace BasecodeLibrary.Converters 10 | { 11 | /// 12 | /// Returns visible if true is passed in 13 | /// 14 | public class BoolToVisibilityConverter : IValueConverter 15 | { 16 | public object Convert(object value, Type targetType, object parameter, string language) 17 | { 18 | bool val = (bool)value; 19 | if (val) 20 | { 21 | return Visibility.Visible; 22 | } 23 | else 24 | { 25 | return Visibility.Collapsed; 26 | } 27 | } 28 | 29 | public object ConvertBack(object value, Type targetType, object parameter, string language) 30 | { 31 | throw new NotImplementedException(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Enums/BasecodeEnums.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Enums 8 | { 9 | public class BasecodeEnums 10 | { 11 | public enum SettingsType 12 | { 13 | _string = 0, 14 | _bool = 1, 15 | _int = 2, 16 | _double = 3, 17 | _password = 4 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Interfaces/IContextRibbonItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Interfaces 8 | { 9 | public interface IContextRibbonItem 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Interfaces/IFilterableItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Interfaces 8 | { 9 | /// 10 | /// Interface that defines extra filterable logic. If implemented on a filterable item data object, the 11 | /// IsFilterMatch method will be invoked when filtering items 12 | /// 13 | public interface IFilterableItem 14 | { 15 | bool IsFilterMatch(string filterText); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Interfaces/ISerializableEnumerable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Interfaces 8 | { 9 | public interface ISerializableEnumerable : ISerializeableObject 10 | { 11 | IEnumerable SerializableObjects { get; } 12 | string objectName { get; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Interfaces/ISerializeableObject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Runtime.Serialization; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace BasecodeLibrary.Interfaces 9 | { 10 | public interface ISerializeableObject 11 | { 12 | string objectName { get; } 13 | DataContractSerializer GetSerializer(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("BasecodeLibrary")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("BasecodeLibrary")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Properties/BasecodeLibrary.rd.xml: -------------------------------------------------------------------------------- 1 | 2 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/SerializableObjects/FlagSaveObject.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Interfaces; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Runtime.Serialization; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace BasecodeLibrary.SerializableObjects 10 | { 11 | [DataContract] 12 | public class FlagSaveObject : ISerializeableObject 13 | { 14 | [DataMember] 15 | public string objectName 16 | { 17 | get; 18 | set; 19 | } 20 | 21 | [DataMember] 22 | public bool Flag { get; set; } 23 | 24 | public virtual DataContractSerializer GetSerializer() 25 | { 26 | return new DataContractSerializer(typeof(FlagSaveObject)); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/SerializableObjects/RateReminderSaveObject.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Interfaces; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Runtime.Serialization; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace BasecodeLibrary.SerializableObjects 10 | { 11 | [DataContract] 12 | public class RateReminderSaveObject : FlagSaveObject, ISerializeableObject 13 | { 14 | public static string ObjectName = "RateReminderSaveObject"; 15 | 16 | [DataMember] 17 | public int RunTimes { get; set; } 18 | 19 | public RateReminderSaveObject() 20 | { 21 | objectName = ObjectName; 22 | } 23 | public override DataContractSerializer GetSerializer() 24 | { 25 | return new DataContractSerializer(typeof(RateReminderSaveObject)); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.ContextRibbon.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 20 | 21 | 31 | 32 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.ContextRibbonItem.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.ContextRibbonMenu.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 25 | 26 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.ContextRibbonMenuItem.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 29 | 30 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.YouTubeVideoPlayer.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Themes/Generic.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/ApplicationServices.cs: -------------------------------------------------------------------------------- 1 | using Windows.UI.ViewManagement; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.Foundation; 8 | using System.Diagnostics; 9 | using Windows.Storage; 10 | using Windows.ApplicationModel; 11 | using System.Runtime.Serialization; 12 | using System.IO; 13 | 14 | namespace BasecodeLibrary.Utilities 15 | { 16 | public static class ApplicationServices 17 | { 18 | private static Dictionary _ApplicationCache = new Dictionary(); 19 | 20 | public enum DeviceType 21 | { 22 | Desktop = 0, 23 | Phablet = 1, 24 | Mobile = 2 25 | } 26 | 27 | public static DeviceType CurrentDevice 28 | { 29 | get 30 | { 31 | ApplicationView view = ApplicationView.GetForCurrentView(); 32 | Rect rect = view.VisibleBounds; 33 | 34 | if (rect.Width >= 1024) 35 | { 36 | return DeviceType.Desktop; 37 | } 38 | else if (rect.Width >= 720) 39 | { 40 | return DeviceType.Phablet; 41 | } 42 | else 43 | { 44 | return DeviceType.Mobile; 45 | } 46 | } 47 | } 48 | 49 | public static void AddItemToApplicationCache(string itemKey, object itemValue) 50 | { 51 | if (!_ApplicationCache.ContainsKey(itemKey)) 52 | { 53 | _ApplicationCache.Add(itemKey, itemValue); 54 | } 55 | else 56 | { 57 | _ApplicationCache.Remove(itemKey); 58 | _ApplicationCache.Add(itemKey, itemValue); 59 | } 60 | } 61 | 62 | public static object GetItemFromApplicationCache(string itemKey) 63 | { 64 | object retValue; 65 | 66 | _ApplicationCache.TryGetValue(itemKey, out retValue); 67 | 68 | Debug.WriteLineIf(retValue == null, "The item with key " + itemKey + " was not found."); 69 | 70 | return retValue; 71 | } 72 | 73 | public static bool ApplicationCacheContains(string itemKey) 74 | { 75 | return GetItemFromApplicationCache(itemKey) != null; 76 | } 77 | 78 | 79 | } 80 | 81 | 82 | 83 | 84 | } 85 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/BaseCodeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml; 7 | 8 | namespace BasecodeLibrary.Utilities 9 | { 10 | public class BaseCodeEventArgs : RoutedEventArgs, IBasecodeEventArgs 11 | { 12 | private object _value; 13 | public object Value 14 | { 15 | get 16 | { 17 | return _value; 18 | } 19 | 20 | set 21 | { 22 | _value = value; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/BasecodeEventHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Utilities 8 | { 9 | public delegate void BaseCodeEventHandler(Object sender,BaseCodeEventArgs _args); 10 | } 11 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/BasecodeRequestManager.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Controls; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Diagnostics; 5 | using System.Linq; 6 | using System.Net.Http; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace BasecodeLibrary.Utilities 11 | { 12 | public static class BasecodeRequestManager 13 | { 14 | private static HttpClient _Request = new HttpClient() { Timeout = new TimeSpan(0, 0, 20) }; 15 | 16 | public static async Task BeginRequest(string url) 17 | { 18 | HttpResponseMessage response = null; 19 | 20 | try 21 | { 22 | response = await _Request.GetAsync(url); 23 | } 24 | catch(Exception error) 25 | { 26 | BaseCodePageContainer.DispalyErrorMessage("An error occured while attempting to make a request for your data. Please check your connection and try to reload the application"); 27 | Debug.WriteLine(error.Message); 28 | Debug.WriteLine(error.StackTrace); 29 | } 30 | 31 | return response; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/CommandHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Input; 7 | 8 | namespace BasecodeLibrary.Utilities 9 | { 10 | public class CommandHandler : ICommand 11 | { 12 | private Action _action; 13 | private Func _canExecute; 14 | public event EventHandler CanExecuteChanged; 15 | 16 | public CommandHandler(Action action, Func canExecute = null) 17 | { 18 | _action = action; 19 | _canExecute = canExecute; 20 | } 21 | 22 | public bool CanExecute(object parameter) 23 | { 24 | if(_canExecute != null) 25 | { 26 | return _canExecute(); 27 | } 28 | else 29 | { 30 | return true; 31 | } 32 | } 33 | 34 | public void Execute(object parameter) 35 | { 36 | _action?.Invoke(); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/IBasecodeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BasecodeLibrary.Utilities 8 | { 9 | interface IBasecodeEventArgs 10 | { 11 | object Value { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/ModelBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Runtime.Serialization; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace BaseCodeLibrary.Utilities 10 | { 11 | [Serializable] 12 | public class ModelBase : INotifyPropertyChanged 13 | { 14 | public void OnPropertyChanged(String prop) 15 | { 16 | PropertyChangedEventHandler handler = PropertyChanged; 17 | 18 | if (handler != null) 19 | { 20 | PropertyChanged(this, new PropertyChangedEventArgs(prop)); 21 | } 22 | } 23 | 24 | public event PropertyChangedEventHandler PropertyChanged; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/SerializableEnumerable.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Interfaces; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Runtime.Serialization; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace BasecodeLibrary.Utilities 10 | { 11 | public class SerializableEnumerable : ISerializableEnumerable 12 | { 13 | public IEnumerable SerializableObjects { get; set; } 14 | 15 | public string objectName { get; set; } 16 | 17 | public DataContractSerializer GetSerializer() 18 | { 19 | return new DataContractSerializer(typeof(SerializableEnumerable)); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/Utilities/ViewModelBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Windows.ApplicationModel.Core; 8 | using Windows.UI.Core; 9 | 10 | namespace BasecodeLibrary.Utilities 11 | { 12 | /// 13 | /// Base class for all view models 14 | /// 15 | public class ViewModelBase : INotifyPropertyChanged 16 | { 17 | /// 18 | /// View model OnPropertyChanged handler 19 | /// 20 | /// 21 | public void OnPropertyChanged(String prop) 22 | { 23 | PropertyChangedEventHandler handler = PropertyChanged; 24 | 25 | if (handler != null) 26 | { 27 | CoreApplication.MainView.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => 28 | { 29 | handler(this, new PropertyChangedEventArgs(prop)); 30 | }); 31 | } 32 | } 33 | 34 | /// 35 | /// View model PropertyChanged event 36 | /// 37 | public event PropertyChangedEventHandler PropertyChanged; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YTEnums.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube 8 | { 9 | public class YTEnums 10 | { 11 | public enum ThumbnailSizes 12 | { 13 | defaultSize = 0, 14 | medium = 1, 15 | high = 2, 16 | standard = 3, 17 | maxres = 4 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace BaseCodeLibrary.YouTube 9 | { 10 | public class YouTubeException : Exception 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/ModelBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace BaseCodeLibrary.YouTube.YouTubeModels 9 | { 10 | public class ModelBase : INotifyPropertyChanged 11 | { 12 | public void OnPropertyChanged(String prop) 13 | { 14 | PropertyChangedEventHandler handler = PropertyChanged; 15 | 16 | if (handler != null) 17 | { 18 | PropertyChanged(this, new PropertyChangedEventArgs(prop)); 19 | } 20 | } 21 | 22 | public event PropertyChangedEventHandler PropertyChanged; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTChannelContentDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTChannelContentDetails : ModelBase, YTIContentDetails 10 | { 11 | private YTRelatedPlaylistsModel _relatedPlaylists; 12 | private string _googlePlusUserId; 13 | 14 | public string GooglePlusUserId 15 | { 16 | get { return _googlePlusUserId; } 17 | set { _googlePlusUserId = value; OnPropertyChanged("GooglePlusUserId"); } 18 | } 19 | 20 | public YTRelatedPlaylistsModel RelatedPlaylists 21 | { 22 | get { return _relatedPlaylists; } 23 | set { _relatedPlaylists = value; OnPropertyChanged("RelatedPlaylists"); } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTChannelModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTChannelModel : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _id; 14 | private YTChannelContentDetails _channelDetails; 15 | 16 | public YTChannelContentDetails ChannelDetails 17 | { 18 | get { return _channelDetails; } 19 | set { _channelDetails = value; OnPropertyChanged("ChannelDetails"); } 20 | } 21 | 22 | public string Id 23 | { 24 | get { return _id; } 25 | set { _id = value; OnPropertyChanged("Id"); } 26 | } 27 | 28 | public string Etag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; OnPropertyChanged("Etag"); } 32 | } 33 | 34 | 35 | public string Kind 36 | { 37 | get { return _kind; } 38 | set { _kind = value; } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTChannelsRequestResults.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTChannelsRequestResults : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _nextPageToken; 14 | private string _previousPageToken; 15 | private YTPageInfoModel _pageInfo; 16 | private IEnumerable _items; 17 | 18 | public IEnumerable Items 19 | { 20 | get { return _items; } 21 | set { _items = value; OnPropertyChanged("Items"); } 22 | } 23 | 24 | public YTPageInfoModel PageInfo 25 | { 26 | get { return _pageInfo; } 27 | set { _pageInfo = value; OnPropertyChanged("PageInfo"); } 28 | } 29 | 30 | 31 | public string PreviousPageToken 32 | { 33 | get { return _previousPageToken; } 34 | set { _previousPageToken = value; OnPropertyChanged("PreviousPageToken"); } 35 | } 36 | 37 | 38 | public string NextPageToken 39 | { 40 | get { return _nextPageToken; } 41 | set { _nextPageToken = value; OnPropertyChanged("NextPageToken"); } 42 | } 43 | 44 | 45 | public string Etag 46 | { 47 | get { return _etag; } 48 | set { _etag = value; OnPropertyChanged("Etag"); } 49 | } 50 | 51 | 52 | public string Kind 53 | { 54 | get { return _kind; } 55 | set { _kind = value; } 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTIContentDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public interface YTIContentDetails 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTItemModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTItemModel : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _Id; 14 | private YTIContentDetails _contentDetails; 15 | 16 | public YTIContentDetails ContentDetails 17 | { 18 | get { return _contentDetails; } 19 | set { _contentDetails = value; OnPropertyChanged("ContentDetails"); } 20 | } 21 | 22 | public string Kind 23 | { 24 | get { return _kind; } 25 | set { _kind = value; OnPropertyChanged("Kind"); } 26 | } 27 | 28 | public string ETag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; OnPropertyChanged("ETag"); } 32 | } 33 | 34 | public string Id 35 | { 36 | get { return _Id; } 37 | set { _Id = value; OnPropertyChanged("Id"); } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTPageInfoModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTPageInfoModel : ModelBase 10 | { 11 | private string _totalResults; 12 | private string _resultsPerPage; 13 | 14 | public string TotalResults 15 | { 16 | get { return _totalResults; } 17 | set { _totalResults = value; OnPropertyChanged("PageInfo"); } 18 | } 19 | 20 | public string ResultsPerPage 21 | { 22 | get { return _resultsPerPage; } 23 | set { _resultsPerPage = value; OnPropertyChanged("ResultsPerPage"); } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTPlaylistDetailsRequestResults.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTPlaylistDetailsRequestResults : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private YTPageInfoModel _pageInfo; 14 | private IEnumerable _videos; 15 | 16 | public IEnumerable Videos 17 | { 18 | get { return _videos; } 19 | set { _videos = value; } 20 | } 21 | 22 | public YTPageInfoModel PageInfo 23 | { 24 | get { return _pageInfo; } 25 | set { _pageInfo = value; } 26 | } 27 | 28 | public string Etag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; } 32 | } 33 | 34 | public string Kind 35 | { 36 | get { return _kind; } 37 | set { _kind = value; } 38 | } 39 | 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTPlaylistModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTPlaylistModel : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _nextPageToken; 14 | private string _previousPageToken; 15 | private YTPageInfoModel _pageInfo; 16 | private YTItemModel _items; 17 | 18 | public YTItemModel Items 19 | { 20 | get { return _items; } 21 | set { _items = value; OnPropertyChanged("Items"); } 22 | } 23 | 24 | public YTPageInfoModel PageInfo 25 | { 26 | get { return _pageInfo; } 27 | set { _pageInfo = value; OnPropertyChanged("PageInfo"); } 28 | } 29 | 30 | 31 | public string PreviousPageToken 32 | { 33 | get { return _previousPageToken; } 34 | set { _previousPageToken = value; OnPropertyChanged("PreviousPageToken"); } 35 | } 36 | 37 | 38 | public string NextPageToken 39 | { 40 | get { return _nextPageToken; } 41 | set { _nextPageToken = value; OnPropertyChanged("NextPageToken"); } 42 | } 43 | 44 | 45 | public string Etag 46 | { 47 | get { return _etag; } 48 | set { _etag = value; OnPropertyChanged("Etag"); } 49 | } 50 | 51 | 52 | public string Kind 53 | { 54 | get { return _kind; } 55 | set { _kind = value; } 56 | } 57 | 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTPlaylistsContentDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTPlaylistsContentDetails : ModelBase, YTIContentDetails 10 | { 11 | private int _itemCount; 12 | 13 | public int ItemCount 14 | { 15 | get { return _itemCount; } 16 | set { _itemCount = value; OnPropertyChanged("ItemCount"); } 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTPlaylistsRequestResults.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTPlaylistsRequestResults : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private YTPageInfoModel _pageInfo; 14 | private List _items; 15 | 16 | public List Items 17 | { 18 | get { return _items; } 19 | set { _items = value; OnPropertyChanged("Items"); } 20 | } 21 | 22 | public YTPageInfoModel PageInfo 23 | { 24 | get { return _pageInfo; } 25 | set { _pageInfo = value; OnPropertyChanged("PageInfo"); } 26 | } 27 | 28 | 29 | public string Etag 30 | { 31 | get { return _etag; } 32 | set { _etag = value; OnPropertyChanged("Etag"); } 33 | } 34 | 35 | 36 | public string Kind 37 | { 38 | get { return _kind; } 39 | set { _kind = value; OnPropertyChanged("Kind"); } 40 | } 41 | 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTRelatedPlaylistsModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTRelatedPlaylistsModel : ModelBase 10 | { 11 | private string _uploads; 12 | 13 | public string Uploads 14 | { 15 | get { return _uploads; } 16 | set { _uploads = value; OnPropertyChanged("Uploads"); } 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTSnipperModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTSnipperModel : ModelBase 10 | { 11 | private string _publishedAt; 12 | private string _channelId; 13 | private string _title; 14 | private string _description; 15 | private string _channelTitle; 16 | private int _categoryId; 17 | private string _liveBroadcastContent; 18 | private List _thumbnails; 19 | 20 | public string LiveBroadcastContent 21 | { 22 | get { return _liveBroadcastContent; } 23 | set { _liveBroadcastContent = value; OnPropertyChanged("LiveBroadcastContent"); } 24 | } 25 | 26 | public int CategoryId 27 | { 28 | get { return _categoryId; } 29 | set { _categoryId = value; OnPropertyChanged("CategoryId"); } 30 | } 31 | 32 | public string ChannelTitle 33 | { 34 | get { return _channelTitle; } 35 | set { _channelTitle = value; OnPropertyChanged("ChannelTitle"); } 36 | } 37 | 38 | public List Thumbnails 39 | { 40 | get { return _thumbnails; } 41 | set { _thumbnails = value; OnPropertyChanged("Thumbnails"); } 42 | } 43 | 44 | public string Description 45 | { 46 | get { return _description; } 47 | set { _description = value; OnPropertyChanged("Description"); } 48 | } 49 | 50 | public string Title 51 | { 52 | get { return _title; } 53 | set { _title = value; OnPropertyChanged("Title"); } 54 | } 55 | 56 | public string ChannelId 57 | { 58 | get { return _channelId; } 59 | set { _channelId = value; OnPropertyChanged("ChannelId"); } 60 | } 61 | 62 | public string PublishedAt 63 | { 64 | get { return _publishedAt; } 65 | set { _publishedAt = value; OnPropertyChanged("PublishedAt"); } 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTThumbnailModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using static BaseCodeLibrary.YouTube.YTEnums; 7 | 8 | namespace BaseCodeLibrary.YouTube.YouTubeModels 9 | { 10 | public class YTThumbnailModel : ModelBase 11 | { 12 | private string _Url; 13 | private string _width; 14 | private string _height; 15 | private ThumbnailSizes _thumbnailSize; 16 | 17 | public ThumbnailSizes ThumbnailSize 18 | { 19 | get { return _thumbnailSize; } 20 | set { _thumbnailSize = value; OnPropertyChanged("ThumbnailSize"); } 21 | } 22 | 23 | public string Height 24 | { 25 | get { return _height; } 26 | set { _height = value; OnPropertyChanged("Height"); } 27 | } 28 | 29 | public string Width 30 | { 31 | get { return _width; } 32 | set { _width = value; OnPropertyChanged("Width"); } 33 | } 34 | 35 | public string Url 36 | { 37 | get { return _Url; } 38 | set { _Url = value; OnPropertyChanged("Url"); } 39 | } 40 | 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTVideoContentDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTVideoContentDetails : ModelBase, YTIContentDetails 10 | { 11 | private string _videoId; 12 | 13 | public string VideoId 14 | { 15 | get { return _videoId; } 16 | set { _videoId = value; OnPropertyChanged("VideoId"); } 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTVideoDetailsContentDetails.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTVideoDetailsContentDetails : ModelBase, YTIContentDetails 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _id; 14 | private YTSnipperModel _snippet; 15 | 16 | public YTSnipperModel Snippet 17 | { 18 | get { return _snippet; } 19 | set { _snippet = value; } 20 | } 21 | 22 | public string Id 23 | { 24 | get { return _id; } 25 | set { _id = value; OnPropertyChanged("Id"); } 26 | } 27 | 28 | public string Etag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; OnPropertyChanged("Etag"); } 32 | } 33 | 34 | public string Kind 35 | { 36 | get { return _kind; } 37 | set { _kind = value; OnPropertyChanged("Kind"); } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTVideoDetailsRequestResults.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTVideoDetailsRequestResults : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private YTPageInfoModel _pageInfo; 14 | private List _items; 15 | 16 | public List Items 17 | { 18 | get { return _items; } 19 | set { _items = value; } 20 | } 21 | 22 | public YTPageInfoModel PageInfo 23 | { 24 | get { return _pageInfo; } 25 | set { _pageInfo = value; OnPropertyChanged("PageInfo"); } 26 | } 27 | 28 | public string Etag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; OnPropertyChanged("Etag"); } 32 | } 33 | 34 | public string Kind 35 | { 36 | get { return _kind; } 37 | set { _kind = value; OnPropertyChanged("Kind"); } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/YouTube/YouTubeModels/YTVideoModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BaseCodeLibrary.YouTube.YouTubeModels 8 | { 9 | public class YTVideoModel : ModelBase 10 | { 11 | private string _kind; 12 | private string _etag; 13 | private string _videoId; 14 | private YTVideoContentDetails _contentDetails; 15 | 16 | public YTVideoContentDetails ContentDetails 17 | { 18 | get { return _contentDetails; } 19 | set { _contentDetails = value; OnPropertyChanged("ContentDetails"); } 20 | } 21 | 22 | public string VideoId 23 | { 24 | get { return _videoId; } 25 | set { _videoId = value; OnPropertyChanged("VideoId"); } 26 | } 27 | 28 | public string ETag 29 | { 30 | get { return _etag; } 31 | set { _etag = value; OnPropertyChanged("ETag"); } 32 | } 33 | 34 | public string Kind 35 | { 36 | get { return _kind; } 37 | set { _kind = value; OnPropertyChanged("Kind"); } 38 | } 39 | 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/obj/Debug/Controls/BaseCodePageContainer.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "C:\Users\ynot_\Source\Repos\DotNetRussell\UWPLibrary\BasecodeLibrary\BasecodeLibrary\Controls\BaseCodePageContainer.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "25903431F53101EA3AD2B0D1F6F1533A09541E4419D3F23AE28DE61384E77F33" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace BasecodeLibrary.Controls 12 | { 13 | partial class BaseCodePageContainer : 14 | global::Windows.UI.Xaml.Controls.Page, 15 | global::Windows.UI.Xaml.Markup.IComponentConnector, 16 | global::Windows.UI.Xaml.Markup.IComponentConnector2 17 | { 18 | /// 19 | /// Connect() 20 | /// 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.19041.685")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | public void Connect(int connectionId, object target) 24 | { 25 | this._contentLoaded = true; 26 | } 27 | 28 | /// 29 | /// GetBindingConnector(int connectionId, object target) 30 | /// 31 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 10.0.19041.685")] 32 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 33 | public global::Windows.UI.Xaml.Markup.IComponentConnector GetBindingConnector(int connectionId, object target) 34 | { 35 | global::Windows.UI.Xaml.Markup.IComponentConnector returnValue = null; 36 | return returnValue; 37 | } 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/BasecodeLibrary/BasecodeLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/BasecodeLibrary/BasecodeLibrary/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /BasecodeLibrary/BasecodeLibrary/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "6.1.4", 4 | "Microsoft.Xaml.Behaviors.Uwp.Native": "1.0.4", 5 | "Newtonsoft.Json": "11.0.2" 6 | }, 7 | "frameworks": { 8 | "uap10.0.10240": {} 9 | }, 10 | "runtimes": { 11 | "win10-arm": {}, 12 | "win10-arm-aot": {}, 13 | "win10-x86": {}, 14 | "win10-x86-aot": {}, 15 | "win10-x64": {}, 16 | "win10-x64-aot": {} 17 | } 18 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Anthony Russell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /SandboxUWPApp/.vs/SandboxUWPApp/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/.vs/SandboxUWPApp/v14/.suo -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp.vssscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" 10 | } 11 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using BasecodeLibrary.Utilities; 2 | using Windows.UI.Xaml.Controls; 3 | 4 | namespace SandboxUWPApp 5 | { 6 | /// 7 | /// An empty page that can be used on its own or navigated to within a Frame. 8 | /// 9 | public sealed partial class MainPage : Page 10 | { 11 | public MainPage() 12 | { 13 | this.InitializeComponent(); 14 | this.DataContext = new TestViewModel(); 15 | } 16 | } 17 | 18 | public class TestViewModel : ViewModelBase 19 | { 20 | private string fieldOne; 21 | 22 | public string FieldOne 23 | { 24 | get { return fieldOne; } 25 | set { fieldOne = value; OnPropertyChanged("FieldOne"); } 26 | } 27 | 28 | private bool fieldTwo; 29 | 30 | public bool FieldTwo 31 | { 32 | get { return fieldTwo; } 33 | set { fieldTwo = value; OnPropertyChanged("FieldTwo"); } 34 | } 35 | 36 | private double fieldThree; 37 | 38 | public double FieldThree 39 | { 40 | get { return fieldThree; } 41 | set { fieldThree = value; OnPropertyChanged("FieldThree"); } 42 | } 43 | 44 | 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Package.appxmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8 | 9 | 13 | 14 | 15 | 16 | 17 | SandboxUWPApp 18 | Anthony 19 | Assets\StoreLogo.png 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SandboxUWPApp")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SandboxUWPApp")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/SandboxUWPApp.csproj.vspscc: -------------------------------------------------------------------------------- 1 | "" 2 | { 3 | "FILE_VERSION" = "9237" 4 | "ENLISTMENT_CHOICE" = "NEVER" 5 | "PROJECT_FILE_RELATIVE_PATH" = "" 6 | "NUMBER_OF_EXCLUDED_FILES" = "0" 7 | "ORIGINAL_PROJECT_FILE_PATH" = "" 8 | "NUMBER_OF_NESTED_PROJECTS" = "0" 9 | "SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROVIDER" 10 | } 11 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/SandboxUWPApp.nuget.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | C:\Users\Anthony\Source\Repos\UWPLibrary\SandboxUWPApp\SandboxUWPApp\project.lock.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Anthony\.nuget\packages\ 9 | ProjectJson 10 | 4.7.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/SandboxUWPApp.nuget.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/SandboxUWPApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/SandboxUWPApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/App.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/App.xbf -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/BasecodeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/BasecodeLibrary.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/ClrCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/ClrCompression.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Xaml.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Xaml.Interactions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Xaml.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Microsoft.Xaml.Interactivity.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/SandboxUWPApp.xr.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.AppContext.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Collections.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ComponentModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Core.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Data.Common.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Globalization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.Compression.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.IO.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Linq.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Http.Rtc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Http.Rtc.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Http.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Requests.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.Sockets.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Net.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.Vectors.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.Vectors.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Numerics.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ObjectModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.DataContractSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.DataContractSerialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.Networking.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Private.Uri.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Context.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Reflection.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.InteropServices.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.InteropServices.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.UI.Xaml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Runtime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Security.Claims.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Security.Principal.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Duplex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Duplex.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Http.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.NetTcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.NetTcp.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Security.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.ServiceModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.Encoding.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.Timer.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Threading.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Windows.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.Linq.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.Xml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/System.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/WinMetadata/Windows.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/WinMetadata/Windows.winmd -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/entrypoint/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/entrypoint/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/AppxManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 10 | 11 | 12 | 13 | SandboxUWPApp 14 | Anthony 15 | Assets\StoreLogo.png 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.pdb -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/BasecodeLibrary.pri -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/ClrCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/ClrCompression.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Core/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Core/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/MainPage.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/MainPage.xbf -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/SandboxUWPApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/SandboxUWPApp.pdb -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/SandboxUWPApp.xr.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.AppContext.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Collections.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ComponentModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Core.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Data.Common.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Globalization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.Compression.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.IO.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Linq.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Http.Rtc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Http.Rtc.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Http.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Requests.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.Sockets.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Net.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.Vectors.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.Vectors.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Numerics.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ObjectModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.DataContractSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.DataContractSerialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.Networking.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Private.Uri.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Context.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Reflection.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.InteropServices.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.InteropServices.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.WindowsRuntime.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.WindowsRuntime.UI.Xaml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.WindowsRuntime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Runtime.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Security.Claims.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Security.Principal.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Duplex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Duplex.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Http.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.NetTcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.NetTcp.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Primitives.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Security.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.ServiceModel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.Encoding.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.Timer.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Threading.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Windows.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.Linq.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.Xml.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/System.dll -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/bin/x86/Debug/resources.pri -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/App.g.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/ARM/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/SandboxUWPApp.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "/RY8j79GwK9wMsFhAa/JOnLNXSz2l9xSAxq9pCvTiBH1VElF1Nw0aOhxm3Qroi+rndffO0EVErD1A+tNr+QDjQ==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "D:\TFS\UPW Projects\UWPBasecodeLibrary\SandboxUWPApp\SandboxUWPApp\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2EC6367EF9BDCD0F3A1C2C2728C68631" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SandboxUWPApp 12 | { 13 | partial class App : global::Windows.UI.Xaml.Application 14 | { 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/App.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "D:\TFS\UPW Projects\UWPBasecodeLibrary\SandboxUWPApp\SandboxUWPApp\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "2EC6367EF9BDCD0F3A1C2C2728C68631" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | 12 | namespace SandboxUWPApp 13 | { 14 | #if !DISABLE_XAML_GENERATED_MAIN 15 | /// 16 | /// Program class 17 | /// 18 | public static class Program 19 | { 20 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 21 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 22 | static void Main(string[] args) 23 | { 24 | global::Windows.UI.Xaml.Application.Start((p) => new App()); 25 | } 26 | } 27 | #endif 28 | 29 | partial class App : global::Windows.UI.Xaml.Application 30 | { 31 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 32 | private bool _contentLoaded; 33 | /// 34 | /// InitializeComponent() 35 | /// 36 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 37 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 38 | public void InitializeComponent() 39 | { 40 | if (_contentLoaded) 41 | return; 42 | 43 | _contentLoaded = true; 44 | #if DEBUG && !DISABLE_XAML_GENERATED_BINDING_DEBUG_OUTPUT 45 | DebugSettings.BindingFailed += (sender, args) => 46 | { 47 | global::System.Diagnostics.Debug.WriteLine(args.Message); 48 | }; 49 | #endif 50 | #if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION 51 | UnhandledException += (sender, e) => 52 | { 53 | if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break(); 54 | }; 55 | #endif 56 | } 57 | } 58 | } 59 | 60 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/App.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/App.xbf -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "D:\TFS\UPW Projects\UWPBasecodeLibrary\SandboxUWPApp\SandboxUWPApp\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "7E313F9543247D9EEA98FA8768BE40AA" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SandboxUWPApp 12 | { 13 | partial class MainPage : 14 | global::Windows.UI.Xaml.Controls.Page, 15 | global::Windows.UI.Xaml.Markup.IComponentConnector, 16 | global::Windows.UI.Xaml.Markup.IComponentConnector2 17 | { 18 | /// 19 | /// Connect() 20 | /// 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | public void Connect(int connectionId, object target) 24 | { 25 | switch(connectionId) 26 | { 27 | case 1: 28 | { 29 | this.filteredList = (global::BasecodeLibrary.Controls.FilterableContentListPanel)(target); 30 | } 31 | break; 32 | default: 33 | break; 34 | } 35 | this._contentLoaded = true; 36 | } 37 | 38 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | public global::Windows.UI.Xaml.Markup.IComponentConnector GetBindingConnector(int connectionId, object target) 41 | { 42 | global::Windows.UI.Xaml.Markup.IComponentConnector returnValue = null; 43 | return returnValue; 44 | } 45 | } 46 | } 47 | 48 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "D:\TFS\UPW Projects\UWPBasecodeLibrary\SandboxUWPApp\SandboxUWPApp\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "F932A3DBA38DDB9C6BAA292B013E6618" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace SandboxUWPApp 12 | { 13 | partial class MainPage : global::Windows.UI.Xaml.Controls.Page 14 | { 15 | 16 | 17 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 18 | private global::BasecodeLibrary.Controls.FilterableContentList filteredList; 19 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 20 | private bool _contentLoaded; 21 | 22 | /// 23 | /// InitializeComponent() 24 | /// 25 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Windows.UI.Xaml.Build.Tasks"," 14.0.0.0")] 26 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 27 | public void InitializeComponent() 28 | { 29 | if (_contentLoaded) 30 | return; 31 | 32 | _contentLoaded = true; 33 | 34 | global::System.Uri resourceLocator = new global::System.Uri("ms-appx:///MainPage.xaml"); 35 | global::Windows.UI.Xaml.Application.LoadComponent(this, resourceLocator, global::Windows.UI.Xaml.Controls.Primitives.ComponentResourceLocation.Application); 36 | } 37 | 38 | } 39 | } 40 | 41 | 42 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MainPage.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MainPage.xbf -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/MultipleQualifiersPerDimensionFound.txt: -------------------------------------------------------------------------------- 1 | False -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | D:\TFS\UPW Projects\UWPBasecodeLibrary\BasecodeLibrary\BasecodeLibrary\BasecodeLibrary.csproj;x86 2 | D:\TFS\UPW Projects\UWPBasecodeLibrary\SandboxUWPApp\SandboxUWPApp\SandboxUWPApp.csproj;x86 3 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/ResourceHandlingTask.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/ResourceHandlingTask.state -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csproj.CopyComplete -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f1b18a791a01c9b7927d9ae6beea1aa05bf96cfe 2 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.pdb -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/SandboxUWPApp.xr.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/XamlSaveStateFile.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/embed.resfiles: -------------------------------------------------------------------------------- 1 | App.xbf 2 | MainPage.xbf 3 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/embed.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | App.xbf 2 | MainPage.xbf 3 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/intermediatexaml/SandboxUWPApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/intermediatexaml/SandboxUWPApp.exe -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/intermediatexaml/SandboxUWPApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DotNetRussell/UWPLibrary/a5fe458d9c9a1e2d18663b1a3fa48d72ceae42d3/SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/intermediatexaml/SandboxUWPApp.pdb -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | WinMetadata\Windows.winmd 2 | Assets\LockScreenLogo.scale-200.png 3 | Assets\SplashScreen.scale-200.png 4 | Assets\Square150x150Logo.scale-200.png 5 | Assets\Square44x44Logo.scale-200.png 6 | Assets\Square44x44Logo.targetsize-24_altform-unplated.png 7 | Assets\StoreLogo.png 8 | Assets\Wide310x150Logo.scale-200.png 9 | SandboxUWPApp.xr.xml 10 | Properties\Default.rd.xml 11 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | WinMetadata\Windows.winmd 2 | Assets\LockScreenLogo.scale-200.png 3 | Assets\SplashScreen.scale-200.png 4 | Assets\Square150x150Logo.scale-200.png 5 | Assets\Square44x44Logo.scale-200.png 6 | Assets\Square44x44Logo.targetsize-24_altform-unplated.png 7 | Assets\StoreLogo.png 8 | Assets\Wide310x150Logo.scale-200.png 9 | SandboxUWPApp.xr.xml 10 | Properties\Default.rd.xml 11 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/pri.resfiles: -------------------------------------------------------------------------------- 1 | C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\BehaviorsXamlSDKManaged\12.0\Redist\CommonConfiguration\Neutral\Microsoft.Xaml.Interactions.pri 2 | C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\BehaviorsXamlSDKManaged\12.0\Redist\CommonConfiguration\Neutral\Microsoft.Xaml.Interactivity.pri 3 | D:\TFS\UPW Projects\UWPBasecodeLibrary\BasecodeLibrary\BasecodeLibrary\bin\x86\Debug\BasecodeLibrary.pri 4 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\BehaviorsXamlSDKManaged\12.0\Redist\CommonConfiguration\Neutral\Microsoft.Xaml.Interactions.pri 2 | C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\BehaviorsXamlSDKManaged\12.0\Redist\CommonConfiguration\Neutral\Microsoft.Xaml.Interactivity.pri 3 | D:\TFS\UPW Projects\UWPBasecodeLibrary\BasecodeLibrary\BasecodeLibrary\bin\x86\Debug\BasecodeLibrary.pri 4 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/qualifiers.txt: -------------------------------------------------------------------------------- 1 | AlternateForm=UNPLATED 2 | Scale=200 3 | TargetSize=24 4 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/obj/x86/Debug/qualifiers.txt.intermediate: -------------------------------------------------------------------------------- 1 | AlternateForm=UNPLATED 2 | Scale=200 3 | TargetSize=24 4 | -------------------------------------------------------------------------------- /SandboxUWPApp/SandboxUWPApp/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.NETCore.UniversalWindowsPlatform": "6.1.4" 4 | }, 5 | "frameworks": { 6 | "uap10.0.10240": {} 7 | }, 8 | "runtimes": { 9 | "win10-arm": {}, 10 | "win10-arm-aot": {}, 11 | "win10-x86": {}, 12 | "win10-x86-aot": {}, 13 | "win10-x64": {}, 14 | "win10-x64-aot": {} 15 | } 16 | } --------------------------------------------------------------------------------