├── 0 ├── Libraries │ ├── Intense.sln │ ├── Intense │ │ ├── IEnumerableExtensions.cs │ │ ├── IHierarchyService.cs │ │ ├── IHierarchyServiceExtensions.cs │ │ ├── Intense.csproj │ │ ├── Intense.nuget.targets │ │ ├── Intense.nuspec │ │ ├── Presentation │ │ │ ├── AppearanceCommands.cs │ │ │ ├── ApplicationViewCommands.cs │ │ │ ├── Command.cs │ │ │ ├── Displayable.cs │ │ │ ├── FrameCommands.cs │ │ │ ├── NavigationItem.cs │ │ │ ├── NavigationItemCollection.cs │ │ │ ├── NavigationItemExtensions.cs │ │ │ ├── NavigationItemHierarchyService.cs │ │ │ ├── NotifyPropertyChanged.cs │ │ │ ├── RelayCommand.cs │ │ │ └── ThemeCommands.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Intense.rd.xml │ │ ├── Resources │ │ │ ├── ResourceHelper.cs │ │ │ └── en-US │ │ │ │ └── Resources.resw │ │ ├── Themes │ │ │ ├── AccentBrushes.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── Converters.xaml │ │ │ ├── Frames.xaml │ │ │ ├── Generic.xaml │ │ │ ├── GridView.xaml │ │ │ ├── Intense.xaml │ │ │ ├── Navigation.xaml │ │ │ ├── Navigation.xaml.cs │ │ │ └── Typography.xaml │ │ ├── UI │ │ │ ├── AccentColors.cs │ │ │ ├── AppearanceManager.cs │ │ │ ├── AppearanceManagerExtensions.cs │ │ │ ├── ApplicationViewExtensions.cs │ │ │ ├── Controls │ │ │ │ ├── ContentFrame.cs │ │ │ │ ├── MasterDetailNavigationPage.xaml │ │ │ │ ├── MasterDetailNavigationPage.xaml.cs │ │ │ │ ├── MasterNavigationPage.xaml │ │ │ │ ├── MasterNavigationPage.xaml.cs │ │ │ │ ├── NavigationPage.cs │ │ │ │ └── PageHeader.cs │ │ │ ├── Converters │ │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ │ ├── ColorToObjectConverter.cs │ │ │ │ ├── DisplayableToObjectConverter.cs │ │ │ │ ├── NavigationItemToObjectConverter.cs │ │ │ │ ├── NullToVisibilityConverter.cs │ │ │ │ ├── SolidColorBrushToObjectConverter.cs │ │ │ │ ├── ToObjectConverter.cs │ │ │ │ └── ValueConverter.cs │ │ │ ├── DependencyObjectExtensions.cs │ │ │ ├── DependencyObjectHierarchyService.cs │ │ │ ├── FrameExtensions.cs │ │ │ ├── IAppearanceManagerEventSink.cs │ │ │ ├── IApplicationViewEventSink.cs │ │ │ ├── IFrameNavigationEventSink.cs │ │ │ ├── IWindowEventSink.cs │ │ │ ├── NavigationApp.cs │ │ │ ├── TextElementHierarchyService.cs │ │ │ ├── ThemeManager.cs │ │ │ ├── WindowChrome.cs │ │ │ ├── WindowExtensions.cs │ │ │ └── XamlHelper.cs │ │ ├── WeakEventHandler.cs │ │ └── project.json │ └── Test │ │ ├── Intense.Test │ │ ├── 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 │ │ ├── Intense.Test.csproj │ │ ├── Intense.Test_TemporaryKey.pfx │ │ ├── NavigationItemTests.cs │ │ ├── NavigationStructure.xaml │ │ ├── NavigationStructure.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── UnitTestApp.rd.xml │ │ ├── UnitTestApp.xaml │ │ ├── UnitTestApp.xaml.cs │ │ └── project.json │ │ └── Intense.TestApp │ │ ├── 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 │ │ ├── Intense.TestApp.csproj │ │ ├── Intense.TestApp_TemporaryKey.pfx │ │ ├── NavigationStructure.xaml │ │ ├── NavigationStructure.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Pages │ │ ├── AppearanceCommandsPage.xaml │ │ ├── AppearanceCommandsPage.xaml.cs │ │ ├── ApplicationViewCommandsPage.xaml │ │ ├── ApplicationViewCommandsPage.xaml.cs │ │ ├── ColorPage.xaml │ │ ├── ColorPage.xaml.cs │ │ ├── FrameCommandsPage.xaml │ │ ├── FrameCommandsPage.xaml.cs │ │ ├── Page1.xaml │ │ ├── Page1.xaml.cs │ │ ├── Page2.xaml │ │ ├── Page2.xaml.cs │ │ ├── Page3.xaml │ │ ├── Page3.xaml.cs │ │ ├── ThemePage.xaml │ │ └── ThemePage.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── ViewModels │ │ ├── ColorViewModel.cs │ │ ├── DisplayableTheme.cs │ │ └── ThemeViewModel.cs │ │ └── project.json └── Templates │ ├── CSharp │ └── ProjectTemplates │ │ ├── BlankAppTemplate │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── BlankApp.png │ │ ├── BlankAppTemplate.csproj │ │ ├── BlankAppTemplate.ico │ │ ├── BlankAppTemplate.vstemplate │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ │ ├── CompositionAppTemplate │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── CompositionApp.png │ │ ├── CompositionAppTemplate.csproj │ │ ├── CompositionAppTemplate.ico │ │ ├── CompositionAppTemplate.vstemplate │ │ ├── MainView.cs │ │ ├── MainViewFactory.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ │ ├── CompositionXamlAppTemplate │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── CompositionXamlApp.png │ │ ├── CompositionXamlAppTemplate.csproj │ │ ├── CompositionXamlAppTemplate.ico │ │ ├── CompositionXamlAppTemplate.vstemplate │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ │ ├── ContentAppTemplate │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── ContentApp.png │ │ ├── ContentAppTemplate.csproj │ │ ├── ContentAppTemplate.ico │ │ ├── ContentAppTemplate.vstemplate │ │ ├── Presentation │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ ├── Command.cs │ │ │ ├── ContentViewModel.cs │ │ │ └── NotifyPropertyChanged.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Shell.xaml │ │ ├── Shell.xaml.cs │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ │ ├── NavigationAppTemplate │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── NavigationApp.png │ │ ├── NavigationAppTemplate.csproj │ │ ├── NavigationAppTemplate.ico │ │ ├── NavigationAppTemplate.vstemplate │ │ ├── NavigationStructure.xaml │ │ ├── NavigationStructure.xaml.cs │ │ ├── Pages │ │ │ ├── AppearancePage.xaml │ │ │ ├── AppearancePage.xaml.cs │ │ │ ├── QuickStartPage.xaml │ │ │ ├── QuickStartPage.xaml.cs │ │ │ ├── TipsAndTricksPage.xaml │ │ │ ├── TipsAndTricksPage.xaml.cs │ │ │ ├── WelcomePage.xaml │ │ │ └── WelcomePage.xaml.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ │ └── SplitViewAppTemplate │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Application_TemporaryKey.pfx │ │ ├── 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 │ │ ├── Pages │ │ ├── Page1.xaml │ │ ├── Page1.xaml.cs │ │ ├── Page2.xaml │ │ ├── Page2.xaml.cs │ │ ├── Page3.xaml │ │ ├── Page3.xaml.cs │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── WelcomePage.xaml │ │ └── WelcomePage.xaml.cs │ │ ├── Presentation │ │ ├── DisplayableTheme.cs │ │ ├── SettingsViewModel.cs │ │ └── ShellViewModel.cs │ │ ├── ProjectTemplate.csproj │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ ├── Shell.xaml │ │ ├── Shell.xaml.cs │ │ ├── SplitViewApp.png │ │ ├── SplitViewAppTemplate.csproj │ │ ├── SplitViewAppTemplate.ico │ │ ├── SplitViewAppTemplate.vstemplate │ │ ├── template.Package.appxmanifest │ │ └── template.project.json │ ├── IntenseTemplates.sln │ ├── IntenseTemplates │ ├── Intense.png │ ├── IntenseTemplates.csproj │ ├── License.txt │ ├── Packages │ │ ├── Intense.0.2.1.nupkg │ │ ├── Intense.0.5.0.nupkg │ │ └── intense.0.1.0-beta.nupkg │ ├── Preview.png │ ├── Properties │ │ └── AssemblyInfo.cs │ └── source.extension.vsixmanifest │ └── VisualBasic │ └── ProjectTemplates │ ├── BlankAppVBTemplate │ ├── App.xaml │ ├── App.xaml.vb │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── BlankApp.png │ ├── BlankAppTemplate.ico │ ├── BlankAppTemplate.vstemplate │ ├── BlankAppVBTemplate.vbproj │ ├── Default.rd.xml │ ├── MainPage.xaml │ ├── MainPage.xaml.vb │ ├── ProjectTemplate.vbproj │ ├── template.Package.appxmanifest │ └── template.project.json │ ├── CompositionAppVBTemplate │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── CompositionApp.png │ ├── CompositionAppTemplate.ico │ ├── CompositionAppTemplate.vstemplate │ ├── CompositionAppVBTemplate.vbproj │ ├── Default.rd.xml │ ├── MainView.vb │ ├── MainViewFactory.vb │ ├── ProjectTemplate.vbproj │ ├── template.Package.appxmanifest │ └── template.project.json │ ├── CompositionXamlAppVBTemplate │ ├── App.xaml │ ├── App.xaml.vb │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── CompositionXamlApp.png │ ├── CompositionXamlAppTemplate.ico │ ├── CompositionXamlAppTemplate.vstemplate │ ├── CompositionXamlAppVBTemplate.vbproj │ ├── Default.rd.xml │ ├── MainPage.xaml │ ├── MainPage.xaml.vb │ ├── ProjectTemplate.vbproj │ ├── template.Package.appxmanifest │ └── template.project.json │ ├── ContentAppVBTemplate │ ├── App.xaml │ ├── App.xaml.vb │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── ContentApp.png │ ├── ContentAppTemplate.ico │ ├── ContentAppTemplate.vstemplate │ ├── ContentAppVBTemplate.vbproj │ ├── Default.rd.xml │ ├── My Project │ │ └── AssemblyInfo.vb │ ├── Presentation │ │ ├── BooleanToVisibilityConverter.vb │ │ ├── Command.vb │ │ ├── ContentViewModel.vb │ │ └── NotifyPropertyChanged.vb │ ├── ProjectTemplate.vbproj │ ├── Shell.xaml │ ├── Shell.xaml.vb │ ├── template.Package.appxmanifest │ └── template.project.json │ ├── NavigationAppVBTemplate │ ├── App.xaml │ ├── App.xaml.vb │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── Default.rd.xml │ ├── NavigationApp.png │ ├── NavigationAppTemplate.ico │ ├── NavigationAppTemplate.vstemplate │ ├── NavigationAppVBTemplate.vbproj │ ├── NavigationStructure.xaml │ ├── NavigationStructure.xaml.vb │ ├── Pages │ │ ├── AppearancePage.xaml │ │ ├── AppearancePage.xaml.vb │ │ ├── QuickStartPage.xaml │ │ ├── QuickStartPage.xaml.vb │ │ ├── TipsAndTricksPage.xaml │ │ ├── TipsAndTricksPage.xaml.vb │ │ ├── WelcomePage.xaml │ │ └── WelcomePage.xaml.vb │ ├── ProjectTemplate.vbproj │ ├── template.Package.appxmanifest │ └── template.project.json │ └── SplitViewAppVBTemplate │ ├── App.xaml │ ├── App.xaml.vb │ ├── Application_TemporaryKey.pfx │ ├── AssemblyInfo.vb │ ├── 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 │ ├── Default.rd.xml │ ├── Pages │ ├── Page1.xaml │ ├── Page1.xaml.vb │ ├── Page2.xaml │ ├── Page2.xaml.vb │ ├── Page3.xaml │ ├── Page3.xaml.vb │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.vb │ ├── WelcomePage.xaml │ └── WelcomePage.xaml.vb │ ├── Presentation │ ├── DisplayableTheme.vb │ ├── SettingsViewModel.vb │ └── ShellViewModel.vb │ ├── ProjectTemplate.vbproj │ ├── Shell.xaml │ ├── Shell.xaml.vb │ ├── SplitViewApp.png │ ├── SplitViewAppTemplate.ico │ ├── SplitViewAppTemplate.vstemplate │ ├── SplitViewAppVBTemplate.vbproj │ ├── template.Package.appxmanifest │ └── template.project.json ├── .gitattributes ├── .gitignore ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/.gitignore -------------------------------------------------------------------------------- /0/Libraries/Intense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense.sln -------------------------------------------------------------------------------- /0/Libraries/Intense/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/IHierarchyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/IHierarchyService.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/IHierarchyServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/IHierarchyServiceExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Intense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Intense.csproj -------------------------------------------------------------------------------- /0/Libraries/Intense/Intense.nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Intense.nuget.targets -------------------------------------------------------------------------------- /0/Libraries/Intense/Intense.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Intense.nuspec -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/AppearanceCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/AppearanceCommands.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/ApplicationViewCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/ApplicationViewCommands.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/Command.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/Displayable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/Displayable.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/FrameCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/FrameCommands.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/NavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/NavigationItem.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/NavigationItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/NavigationItemCollection.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/NavigationItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/NavigationItemExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/NavigationItemHierarchyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/NavigationItemHierarchyService.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/RelayCommand.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Presentation/ThemeCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Presentation/ThemeCommands.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Properties/Intense.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Properties/Intense.rd.xml -------------------------------------------------------------------------------- /0/Libraries/Intense/Resources/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Resources/ResourceHelper.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Resources/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Resources/en-US/Resources.resw -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/AccentBrushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/AccentBrushes.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Brushes.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Converters.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Frames.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Frames.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Generic.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/GridView.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Intense.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Intense.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Navigation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Navigation.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Navigation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Navigation.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/Themes/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/Themes/Typography.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/AccentColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/AccentColors.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/AppearanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/AppearanceManager.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/AppearanceManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/AppearanceManagerExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/ApplicationViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/ApplicationViewExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/ContentFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/ContentFrame.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/MasterDetailNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/MasterDetailNavigationPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/MasterDetailNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/MasterDetailNavigationPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/MasterNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/MasterNavigationPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/MasterNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/MasterNavigationPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/NavigationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/NavigationPage.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Controls/PageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Controls/PageHeader.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/ColorToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/ColorToObjectConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/DisplayableToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/DisplayableToObjectConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/NavigationItemToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/NavigationItemToObjectConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/SolidColorBrushToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/SolidColorBrushToObjectConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/ToObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/ToObjectConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/Converters/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/Converters/ValueConverter.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/DependencyObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/DependencyObjectExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/DependencyObjectHierarchyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/DependencyObjectHierarchyService.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/FrameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/FrameExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/IAppearanceManagerEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/IAppearanceManagerEventSink.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/IApplicationViewEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/IApplicationViewEventSink.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/IFrameNavigationEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/IFrameNavigationEventSink.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/IWindowEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/IWindowEventSink.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/NavigationApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/NavigationApp.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/TextElementHierarchyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/TextElementHierarchyService.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/ThemeManager.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/WindowChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/WindowChrome.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/WindowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/WindowExtensions.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/UI/XamlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/UI/XamlHelper.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/WeakEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/WeakEventHandler.cs -------------------------------------------------------------------------------- /0/Libraries/Intense/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Intense/project.json -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Intense.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Intense.Test.csproj -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Intense.Test_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Intense.Test_TemporaryKey.pfx -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/NavigationItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/NavigationItemTests.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/NavigationStructure.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/NavigationStructure.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/NavigationStructure.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/NavigationStructure.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Package.appxmanifest -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/UnitTestApp.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.Test/project.json -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/App.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/App.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Intense.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Intense.TestApp.csproj -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Intense.TestApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Intense.TestApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/NavigationStructure.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/NavigationStructure.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/NavigationStructure.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/NavigationStructure.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Package.appxmanifest -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/AppearanceCommandsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/AppearanceCommandsPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/AppearanceCommandsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/AppearanceCommandsPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ApplicationViewCommandsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ApplicationViewCommandsPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ApplicationViewCommandsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ApplicationViewCommandsPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ColorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ColorPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ColorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ColorPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/FrameCommandsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/FrameCommandsPage.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/FrameCommandsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/FrameCommandsPage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page1.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page1.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page2.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page2.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page3.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/Page3.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/Page3.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ThemePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ThemePage.xaml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Pages/ThemePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Pages/ThemePage.xaml.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/ViewModels/ColorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/ViewModels/ColorViewModel.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/ViewModels/DisplayableTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/ViewModels/DisplayableTheme.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/ViewModels/ThemeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/ViewModels/ThemeViewModel.cs -------------------------------------------------------------------------------- /0/Libraries/Test/Intense.TestApp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Libraries/Test/Intense.TestApp/project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/App.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/BlankAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/MainPage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/MainPage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/BlankAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/CompositionAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/MainView.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/MainViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/MainViewFactory.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/App.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/CompositionXamlAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/MainPage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/MainPage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/CompositionXamlAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/App.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ContentAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/Command.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/ContentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/ContentViewModel.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Presentation/NotifyPropertyChanged.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Shell.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/Shell.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/ContentAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/App.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationStructure.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationStructure.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationStructure.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/NavigationStructure.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/AppearancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/AppearancePage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/AppearancePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/AppearancePage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/QuickStartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/QuickStartPage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/QuickStartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/QuickStartPage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/TipsAndTricksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/TipsAndTricksPage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/TipsAndTricksPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/TipsAndTricksPage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/WelcomePage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Pages/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/NavigationAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/App.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page1.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page1.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page2.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page2.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page3.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page3.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/Page3.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/WelcomePage.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Pages/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/DisplayableTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/DisplayableTheme.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/SettingsViewModel.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Presentation/ShellViewModel.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/ProjectTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Properties/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Shell.xaml -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/Shell.xaml.cs -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewApp.png -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.csproj -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/SplitViewAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/CSharp/ProjectTemplates/SplitViewAppTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates.sln -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Intense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Intense.png -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/IntenseTemplates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/IntenseTemplates.csproj -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/License.txt -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Packages/Intense.0.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Packages/Intense.0.2.1.nupkg -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Packages/Intense.0.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Packages/Intense.0.5.0.nupkg -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Packages/intense.0.1.0-beta.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Packages/intense.0.1.0-beta.nupkg -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Preview.png -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /0/Templates/IntenseTemplates/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/IntenseTemplates/source.extension.vsixmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/App.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/BlankAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/MainPage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/MainPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/MainPage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/BlankAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/CompositionAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/MainView.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/MainView.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/MainViewFactory.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/MainViewFactory.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/App.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/CompositionXamlAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/MainPage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/MainPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/MainPage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/CompositionXamlAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/App.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ContentAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/BooleanToVisibilityConverter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/BooleanToVisibilityConverter.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/Command.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/Command.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/ContentViewModel.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/ContentViewModel.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/NotifyPropertyChanged.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Presentation/NotifyPropertyChanged.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Shell.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Shell.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/Shell.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/ContentAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/App.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationStructure.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationStructure.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationStructure.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/NavigationStructure.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/AppearancePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/AppearancePage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/AppearancePage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/AppearancePage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/QuickStartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/QuickStartPage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/QuickStartPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/QuickStartPage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/TipsAndTricksPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/TipsAndTricksPage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/TipsAndTricksPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/TipsAndTricksPage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/WelcomePage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/WelcomePage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/Pages/WelcomePage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/NavigationAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/App.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/App.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Application_TemporaryKey.pfx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/AssemblyInfo.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/StoreLogo.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Default.rd.xml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page1.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page1.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page1.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page2.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page2.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page2.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page3.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page3.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/Page3.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/SettingsPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/SettingsPage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/WelcomePage.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/WelcomePage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Pages/WelcomePage.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/DisplayableTheme.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/DisplayableTheme.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/SettingsViewModel.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/SettingsViewModel.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/ShellViewModel.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Presentation/ShellViewModel.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/ProjectTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/ProjectTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Shell.xaml -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Shell.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/Shell.xaml.vb -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewApp.png -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppTemplate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppTemplate.ico -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppTemplate.vstemplate -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppVBTemplate.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/SplitViewAppVBTemplate.vbproj -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/template.Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/template.Package.appxmanifest -------------------------------------------------------------------------------- /0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/template.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/0/Templates/VisualBasic/ProjectTemplates/SplitViewAppVBTemplate/template.project.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstfloorsoftware/intense/HEAD/README.md --------------------------------------------------------------------------------