├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── COPILOT_INSTRUCTIONS.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── renovate.json └── workflows │ ├── ci-build.yml │ ├── lock.yml │ └── release.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images └── logo.png ├── src ├── .junie │ └── guidelines.md ├── Benchmarks │ ├── CurrentBenchmark.cs │ ├── CurrentMutableBenchmark.cs │ ├── DependencyResolver.cs │ ├── Directory.Packages.props │ ├── LocatorBenchmark.cs │ ├── Program.cs │ ├── Splat.Benchmarks.csproj │ ├── Splat.Benchmarks.sln │ └── ViewModel.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Splat.Aot.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── CoreAotCompatibilityTests.cs │ └── Splat.Aot.Tests.csproj ├── Splat.AppCenter │ ├── AppCenterFeatureUsageTrackingSession.cs │ ├── AppCenterViewTracking.cs │ └── Splat.AppCenter.csproj ├── Splat.ApplicationInsights │ ├── ApplicationInsightsFeatureUsageTrackingSession.cs │ ├── ApplicationInsightsViewTracking.cs │ └── Splat.ApplicationInsights.csproj ├── Splat.Autofac.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── DependencyResolverTests.cs │ ├── Splat.Autofac.Tests.csproj │ └── xunit.runner.json ├── Splat.Autofac │ ├── AutofacDependencyResolver.cs │ ├── Builder │ │ └── AutofacSplatModule.cs │ ├── README.md │ ├── Splat.Autofac.csproj │ └── SplatAutofacExtensions.cs ├── Splat.Builder.Tests │ ├── AppBuilderTests.cs │ ├── AssemblyInfo.Parallel.cs │ ├── Splat.Builder.Tests.csproj │ └── SplatBuilderExtensionsTests.cs ├── Splat.Builder │ ├── AppBuilder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Splat.Builder.csproj │ └── SplatBuilderExtensions.cs ├── Splat.Common.Test │ ├── DummyObjectClass1.cs │ ├── DummyObjectClass2.cs │ ├── DummyObjectClass3.cs │ ├── IDummyInterface.cs │ ├── IScreen.cs │ ├── IViewFor.cs │ ├── IViewModelOne.cs │ ├── MockScreen.cs │ ├── Splat.Common.Test.csproj │ ├── ViewModelOne.cs │ ├── ViewModelTwo.cs │ ├── ViewOne.cs │ ├── ViewThatShouldNotLoad.cs │ └── ViewTwo.cs ├── Splat.Core │ ├── Disposables │ │ ├── ActionDisposable.cs │ │ ├── BooleanDisposable.cs │ │ └── CompositeDisposable.cs │ ├── ExceptionMixins.cs │ ├── IAppBuilder.cs │ ├── IAppInstance.cs │ ├── IModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceLocation │ │ ├── AppLocator.cs │ │ ├── DependencyResolverMixins.cs │ │ ├── IDependencyResolver.cs │ │ ├── IMutableDependencyResolver.cs │ │ ├── IReadonlyDependencyResolver.cs │ │ ├── InternalLocator.cs │ │ ├── ModernDependencyResolver.cs │ │ ├── NullServiceType.cs │ │ └── ResolverMixins.cs │ └── Splat.Core.csproj ├── Splat.Drawing.Tests │ ├── API │ │ ├── ApiApprovalTests.SplatUIProject.DotNet10_0.verified.txt │ │ ├── ApiApprovalTests.SplatUIProject.DotNet8_0.verified.txt │ │ ├── ApiApprovalTests.SplatUIProject.DotNet9_0.verified.txt │ │ └── ApiApprovalTests.cs │ ├── AssemblyInfo.Parallel.cs │ ├── BitmapLoaderTests.cs │ ├── Colors │ │ ├── CoverageColorTests.cs │ │ ├── KnownColorTests.cs │ │ └── SplatColorTests.cs │ ├── PlatformBitmapLoaderTests.cs │ └── Splat.Drawing.Tests.csproj ├── Splat.Drawing │ ├── Bitmaps │ │ ├── BitmapLoader.cs │ │ ├── BitmapLoaderException.cs │ │ ├── CompressedBitmapFormat.cs │ │ ├── IBitmap.cs │ │ └── IBitmapLoader.cs │ ├── Colors │ │ ├── KnownColor.cs │ │ ├── KnownColors.cs │ │ ├── SplatColor.KnownColors.cs │ │ └── SplatColor.cs │ ├── DefaultPlatformModeDetector.cs │ ├── IPlatformModeDetector.cs │ ├── PlatformModeDetector.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── Bitmaps │ │ │ │ ├── AndroidBitmap.cs │ │ │ │ ├── BitmapMixins.cs │ │ │ │ ├── DrawableBitmap.cs │ │ │ │ └── PlatformBitmapLoader.cs │ │ │ ├── Colors │ │ │ │ ├── ColorExtensions.cs │ │ │ │ └── SplatColorExtensions.cs │ │ │ └── Maths │ │ │ │ ├── PointExtensions.cs │ │ │ │ └── RectExtensions.cs │ │ ├── BindingFlags.cs │ │ ├── Cocoa │ │ │ ├── Bitmaps │ │ │ │ ├── BitmapMixins.cs │ │ │ │ ├── CocoaBitmap.cs │ │ │ │ └── PlatformBitmapLoader.cs │ │ │ └── Colors │ │ │ │ └── SplatColorExtensions.cs │ │ ├── ReflectionStubs.cs │ │ ├── ServiceLocationDrawingInitialization.cs │ │ ├── Tizen │ │ │ └── Bitmaps │ │ │ │ ├── BitmapMixins.cs │ │ │ │ ├── PlatformBitmapLoader.cs │ │ │ │ └── TizenBitmap.cs │ │ ├── TypeForwardedSystemDrawing.cs │ │ ├── net4 │ │ │ ├── Bitmaps │ │ │ │ ├── BitmapMixins.cs │ │ │ │ ├── BitmapSourceBitmap.cs │ │ │ │ └── PlatformBitmapLoader.cs │ │ │ ├── Colors │ │ │ │ ├── ColorExtensions.cs │ │ │ │ └── SplatColorExtensions.cs │ │ │ └── Maths │ │ │ │ ├── PointExtensions.cs │ │ │ │ ├── RectExtensions.cs │ │ │ │ └── SizeExtensions.cs │ │ ├── net6 │ │ │ ├── Bitmaps │ │ │ │ ├── BitmapMixins.cs │ │ │ │ ├── BitmapSourceBitmap.cs │ │ │ │ └── PlatformBitmapLoader.cs │ │ │ ├── Colors │ │ │ │ ├── ColorExtensions.cs │ │ │ │ └── SplatColorExtensions.cs │ │ │ └── Maths │ │ │ │ ├── PointExtensions.cs │ │ │ │ ├── RectExtensions.cs │ │ │ │ └── SizeExtensions.cs │ │ └── netcoreapp3 │ │ │ ├── Bitmaps │ │ │ ├── BitmapMixins.cs │ │ │ ├── BitmapSourceBitmap.cs │ │ │ └── PlatformBitmapLoader.cs │ │ │ ├── Colors │ │ │ ├── ColorExtensions.cs │ │ │ └── SplatColorExtensions.cs │ │ │ └── Maths │ │ │ ├── PointExtensions.cs │ │ │ ├── RectExtensions.cs │ │ │ └── SizeExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Resource.designer.cs │ └── Splat.Drawing.csproj ├── Splat.DryIoc.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── DependencyResolverTests.cs │ └── Splat.DryIoc.Tests.csproj ├── Splat.DryIoc │ ├── Builder │ │ └── DryIocSplatModule.cs │ ├── DryIocDependencyResolver.cs │ ├── README.md │ ├── Splat.DryIoc.csproj │ └── SplatDryIocExtensions.cs ├── Splat.Exceptionless │ ├── Builder │ │ └── ExceptionlessSplatModule.cs │ ├── ExceptionlessFeatureUsageTrackingSession.cs │ ├── ExceptionlessSplatLogger.cs │ ├── ExceptionlessViewTracking.cs │ ├── MutableDependencyResolverExtensions.cs │ └── Splat.Exceptionless.csproj ├── Splat.Log4Net │ ├── Builder │ │ └── Log4NetSplatModule.cs │ ├── Log4NetLogger.cs │ ├── LogResolver.cs │ ├── MutableDependencyResolverExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Splat.Log4Net.csproj ├── Splat.Logging │ ├── ActionLogger.cs │ ├── AllocationFreeLoggerBase.cs │ ├── Builder │ │ ├── SplatLogManagerModule.cs │ │ └── SplatLoggerModule.cs │ ├── ConsoleLogger.cs │ ├── DebugLogger.cs │ ├── DefaultLogManager.cs │ ├── FullLoggerExtensions.cs │ ├── FuncLogManager.cs │ ├── IAllocationFreeErrorLogger.cs │ ├── IAllocationFreeLogger.cs │ ├── IEnableLogger.cs │ ├── IFullLogger.cs │ ├── ILogManager.cs │ ├── ILogger.cs │ ├── IStaticFullLogger.cs │ ├── LogHost.cs │ ├── LogLevel.cs │ ├── LogManagerMixin.cs │ ├── LoggingException.cs │ ├── MemoizingMRUCache.cs │ ├── NullLogger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Splat.Logging.csproj │ ├── StaticFullLogger.cs │ ├── WrappingFullLogger.cs │ ├── WrappingLogLevelLogger.cs │ └── WrappingPrefixLogger.cs ├── Splat.Microsoft.Extensions.DependencyInjection.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── ContainerWrapper.cs │ ├── DependencyResolverTests.cs │ ├── MicrosoftDependencyResolverTests.cs │ └── Splat.Microsoft.Extensions.DependencyInjection.Tests.csproj ├── Splat.Microsoft.Extensions.DependencyInjection │ ├── Builder │ │ └── MicrosoftDependencyResolverModule.cs │ ├── MicrosoftDependencyResolver.cs │ ├── README.md │ ├── Splat.Microsoft.Extensions.DependencyInjection.csproj │ └── SplatMicrosoftExtensions.cs ├── Splat.Microsoft.Extensions.Logging │ ├── Builder │ │ └── MicrosoftExtensionsLoggingSplatModule.cs │ ├── MicrosoftExtensionsLogProvider.cs │ ├── MicrosoftExtensionsLoggingExtensions.cs │ ├── MicrosoftExtensionsLoggingLogger.cs │ ├── MsLoggingHelpers.cs │ └── Splat.Microsoft.Extensions.Logging.csproj ├── Splat.NLog │ ├── Builder │ │ └── NLogSplatModule.cs │ ├── LogResolver.cs │ ├── MutableDependencyResolverExtensions.cs │ ├── NLogLogger.cs │ └── Splat.NLog.csproj ├── Splat.Ninject.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── DependencyResolverTests.cs │ ├── NInjectDependencyResolverTests.cs │ └── Splat.Ninject.Tests.csproj ├── Splat.Ninject │ ├── Builder │ │ └── NinjectSplatModule.cs │ ├── NinjectDependencyResolver.cs │ ├── README.md │ ├── Splat.Ninject.csproj │ └── SplatNinjectExtensions.cs ├── Splat.Prism.Forms │ ├── PrismApplication.cs │ └── Splat.Prism.Forms.csproj ├── Splat.Prism.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── DependencyResolverTests.cs │ └── Splat.Prism.Tests.csproj ├── Splat.Prism │ ├── Splat.Prism.csproj │ └── SplatContainerExtension.cs ├── Splat.Raygun │ ├── RaygunFeatureUsageTrackingSession.cs │ └── Splat.Raygun.csproj ├── Splat.Serilog │ ├── Builder │ │ └── SerilogSplatModule.cs │ ├── MutableDependencyResolverExtensions.cs │ ├── SerilogFullLogger.cs │ ├── SerilogHelper.cs │ └── Splat.Serilog.csproj ├── Splat.SimpleInjector.Tests │ ├── AssemblyInfo.Parallel.cs │ ├── DependencyResolverTests.cs │ ├── Splat.SimpleInjector.Tests.csproj │ └── xunit.runner.json ├── Splat.SimpleInjector │ ├── Builder │ │ └── SimpleInjectorSplatModule.cs │ ├── README.md │ ├── SimpleInjectorDependencyResolver.cs │ ├── SimpleInjectorInitializer.cs │ ├── Splat.SimpleInjector.csproj │ ├── SplatSimpleInjectorExtensions.cs │ └── TransientSimpleInjectorRegistration.cs ├── Splat.TestRunner.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ ├── menu │ │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── Strings.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ └── Splat.TestRunner.Android.csproj ├── Splat.TestRunner.Uwp │ ├── 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 │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Splat.TestRunner.Uwp.GeneratedMSBuildEditorConfig.editorconfig │ ├── Splat.TestRunner.Uwp.csproj │ ├── UnitTestApp.xaml │ └── UnitTestApp.xaml.cs ├── Splat.Tests │ ├── API │ │ ├── ApiApprovalTests.SplatProject.DotNet10_0.verified.txt │ │ ├── ApiApprovalTests.SplatProject.DotNet8_0.verified.txt │ │ ├── ApiApprovalTests.SplatProject.DotNet9_0.verified.txt │ │ └── ApiApprovalTests.cs │ ├── ApiExtensions.cs │ ├── ApplicationPerformanceMonitoring │ │ ├── AppCenterFeatureUsageTrackingSessionTests.cs │ │ ├── AppCenterViewTrackingTests.cs │ │ ├── ApplicationInsightsFeatureUsageTrackingSessionTests.cs │ │ ├── ApplicationInsightsViewTrackingTests.cs │ │ ├── BaseFeatureUsageTrackingTests.cs │ │ ├── BaseViewTrackingTests.cs │ │ ├── EnableFeatureUsageTrackingExtensionsTests.cs │ │ ├── ExceptionlessFeatureUsageTrackingSessionTests.cs │ │ └── RaygunFeatureUsageTrackingSessionTests.cs │ ├── AssemblyFinderTests.cs │ ├── AssemblyInfo.Parallel.cs │ ├── DisposableTests.cs │ ├── ExceptionMixinsTests.cs │ ├── LocatorSerialRegisterTests.cs │ ├── LocatorTests.cs │ ├── Logging │ │ ├── ActionLoggerTests.cs │ │ ├── BaseTests │ │ │ ├── AllocateFreeErrorLoggerTestBase.cs │ │ │ ├── AllocationFreeLoggerBaseTestBase.cs │ │ │ ├── FullLoggerTestBase.cs │ │ │ ├── LoggerBase.cs │ │ │ └── WrappingFullLoggerTestBase.cs │ │ ├── FullLoggers │ │ │ ├── NLogLoggerTests.cs │ │ │ └── SerilogLoggerTests.cs │ │ ├── Helpers │ │ │ └── FormatHelper.cs │ │ ├── StaticLoggerTests.cs │ │ ├── WrappingFullLoggers │ │ │ ├── ConsoleLoggerTests.cs │ │ │ ├── ExceptionlessLoggerTests.cs │ │ │ ├── Log4NetLoggerTests.cs │ │ │ └── MicrosoftExtensionsLoggingLoggerTests.cs │ │ └── WrappingPrefixLoggerTests.cs │ ├── MemoizingMRUCacheTests.cs │ ├── Mocks │ │ ├── IMockLogTarget.cs │ │ └── TextLogger.cs │ ├── ModeDetection │ │ ├── DefaultModeDetectorTests.cs │ │ └── ModeTests.cs │ ├── PointMathExtensionsTests.cs │ ├── RectEdgeTests.cs │ ├── RectangleMathExtensionsTests.cs │ ├── ServiceLocation │ │ ├── BaseDependencyResolverTests.cs │ │ └── ModernDependencyResolverTests.cs │ ├── SizeMathExtensionsTests.cs │ ├── Splat.Tests.csproj │ ├── TargetFrameworkExtensionsTests.cs │ ├── XUnitHelpers.cs │ ├── splatlogo.bmp │ ├── splatlogo.jpg │ ├── splatlogo.png │ └── xunit.runner.json ├── Splat.sln ├── Splat │ ├── ApplicationPerformanceMonitoring │ │ ├── DefaultFeatureUsageTrackingManager.cs │ │ ├── DefaultFeatureUsageTrackingSession.cs │ │ ├── EnableFeatureUsageTrackingExtensions.cs │ │ ├── FuncFeatureUsageTrackingManager.cs │ │ ├── IEnableFeatureUsageTracking.cs │ │ ├── IFeatureUsageTrackingManager.cs │ │ ├── IFeatureUsageTrackingSession.cs │ │ ├── IFeatureUsageTrackingSession{TReferenceType}.cs │ │ └── IViewTracking.cs │ ├── AssemblyFinder.cs │ ├── Maths │ │ ├── PointMathExtensions.cs │ │ ├── RectEdge.cs │ │ ├── RectangleMathExtensions.cs │ │ └── SizeMathExtensions.cs │ ├── ModeDetection │ │ ├── DefaultModeDetector.cs │ │ ├── IModeDetector.cs │ │ ├── Mode.cs │ │ └── ModeDetector.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceLocation │ │ ├── FuncDependencyResolver.cs │ │ ├── Locator.cs │ │ └── ServiceLocationInitialization.cs │ ├── Splat.csproj │ └── TargetFrameworkExtensions.cs └── stylecop.json ├── tests.runsettings └── version.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/COPILOT_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/COPILOT_INSTRUCTIONS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/images/logo.png -------------------------------------------------------------------------------- /src/.junie/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/.junie/guidelines.md -------------------------------------------------------------------------------- /src/Benchmarks/CurrentBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/CurrentBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/CurrentMutableBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/CurrentMutableBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/DependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/DependencyResolver.cs -------------------------------------------------------------------------------- /src/Benchmarks/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/Directory.Packages.props -------------------------------------------------------------------------------- /src/Benchmarks/LocatorBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/LocatorBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Benchmarks/Splat.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/Splat.Benchmarks.csproj -------------------------------------------------------------------------------- /src/Benchmarks/Splat.Benchmarks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/Splat.Benchmarks.sln -------------------------------------------------------------------------------- /src/Benchmarks/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Benchmarks/ViewModel.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Splat.Aot.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Aot.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Aot.Tests/CoreAotCompatibilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Aot.Tests/CoreAotCompatibilityTests.cs -------------------------------------------------------------------------------- /src/Splat.Aot.Tests/Splat.Aot.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Aot.Tests/Splat.Aot.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.AppCenter/AppCenterFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.AppCenter/AppCenterFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat.AppCenter/AppCenterViewTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.AppCenter/AppCenterViewTracking.cs -------------------------------------------------------------------------------- /src/Splat.AppCenter/Splat.AppCenter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.AppCenter/Splat.AppCenter.csproj -------------------------------------------------------------------------------- /src/Splat.ApplicationInsights/ApplicationInsightsFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.ApplicationInsights/ApplicationInsightsFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat.ApplicationInsights/ApplicationInsightsViewTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.ApplicationInsights/ApplicationInsightsViewTracking.cs -------------------------------------------------------------------------------- /src/Splat.ApplicationInsights/Splat.ApplicationInsights.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.ApplicationInsights/Splat.ApplicationInsights.csproj -------------------------------------------------------------------------------- /src/Splat.Autofac.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Autofac.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Autofac.Tests/Splat.Autofac.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac.Tests/Splat.Autofac.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Autofac.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Splat.Autofac/AutofacDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac/AutofacDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Autofac/Builder/AutofacSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac/Builder/AutofacSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Autofac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac/README.md -------------------------------------------------------------------------------- /src/Splat.Autofac/Splat.Autofac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac/Splat.Autofac.csproj -------------------------------------------------------------------------------- /src/Splat.Autofac/SplatAutofacExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Autofac/SplatAutofacExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Builder.Tests/AppBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder.Tests/AppBuilderTests.cs -------------------------------------------------------------------------------- /src/Splat.Builder.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Builder.Tests/Splat.Builder.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder.Tests/Splat.Builder.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Builder.Tests/SplatBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder.Tests/SplatBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Builder/AppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder/AppBuilder.cs -------------------------------------------------------------------------------- /src/Splat.Builder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.Builder/Splat.Builder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder/Splat.Builder.csproj -------------------------------------------------------------------------------- /src/Splat.Builder/SplatBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Builder/SplatBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/DummyObjectClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/DummyObjectClass1.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/DummyObjectClass2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/DummyObjectClass2.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/DummyObjectClass3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/DummyObjectClass3.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/IDummyInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/IDummyInterface.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/IScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/IScreen.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/IViewFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/IViewFor.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/IViewModelOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/IViewModelOne.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/MockScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/MockScreen.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/Splat.Common.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/Splat.Common.Test.csproj -------------------------------------------------------------------------------- /src/Splat.Common.Test/ViewModelOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/ViewModelOne.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/ViewModelTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/ViewModelTwo.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/ViewOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/ViewOne.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/ViewThatShouldNotLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/ViewThatShouldNotLoad.cs -------------------------------------------------------------------------------- /src/Splat.Common.Test/ViewTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Common.Test/ViewTwo.cs -------------------------------------------------------------------------------- /src/Splat.Core/Disposables/ActionDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/Disposables/ActionDisposable.cs -------------------------------------------------------------------------------- /src/Splat.Core/Disposables/BooleanDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/Disposables/BooleanDisposable.cs -------------------------------------------------------------------------------- /src/Splat.Core/Disposables/CompositeDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/Disposables/CompositeDisposable.cs -------------------------------------------------------------------------------- /src/Splat.Core/ExceptionMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ExceptionMixins.cs -------------------------------------------------------------------------------- /src/Splat.Core/IAppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/IAppBuilder.cs -------------------------------------------------------------------------------- /src/Splat.Core/IAppInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/IAppInstance.cs -------------------------------------------------------------------------------- /src/Splat.Core/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/IModule.cs -------------------------------------------------------------------------------- /src/Splat.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/AppLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/AppLocator.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/DependencyResolverMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/DependencyResolverMixins.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/IDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/IDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/IMutableDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/IMutableDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/IReadonlyDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/IReadonlyDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/InternalLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/InternalLocator.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/ModernDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/ModernDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/NullServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/NullServiceType.cs -------------------------------------------------------------------------------- /src/Splat.Core/ServiceLocation/ResolverMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/ServiceLocation/ResolverMixins.cs -------------------------------------------------------------------------------- /src/Splat.Core/Splat.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Core/Splat.Core.csproj -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet10_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet10_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet8_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet8_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet9_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/API/ApiApprovalTests.SplatUIProject.DotNet9_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/API/ApiApprovalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/API/ApiApprovalTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/BitmapLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/BitmapLoaderTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/Colors/CoverageColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/Colors/CoverageColorTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/Colors/KnownColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/Colors/KnownColorTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/Colors/SplatColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/Colors/SplatColorTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/PlatformBitmapLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/PlatformBitmapLoaderTests.cs -------------------------------------------------------------------------------- /src/Splat.Drawing.Tests/Splat.Drawing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing.Tests/Splat.Drawing.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Drawing/Bitmaps/BitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Bitmaps/BitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Bitmaps/BitmapLoaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Bitmaps/BitmapLoaderException.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Bitmaps/CompressedBitmapFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Bitmaps/CompressedBitmapFormat.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Bitmaps/IBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Bitmaps/IBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Bitmaps/IBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Bitmaps/IBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Colors/KnownColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Colors/KnownColor.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Colors/KnownColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Colors/KnownColors.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Colors/SplatColor.KnownColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Colors/SplatColor.KnownColors.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Colors/SplatColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Colors/SplatColor.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/DefaultPlatformModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/DefaultPlatformModeDetector.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/IPlatformModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/IPlatformModeDetector.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/PlatformModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/PlatformModeDetector.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Bitmaps/AndroidBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Bitmaps/AndroidBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Bitmaps/DrawableBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Bitmaps/DrawableBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Colors/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Colors/ColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Colors/SplatColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Colors/SplatColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Maths/PointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Maths/PointExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Android/Maths/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Android/Maths/RectExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/BindingFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/BindingFlags.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Cocoa/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Cocoa/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Cocoa/Bitmaps/CocoaBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Cocoa/Bitmaps/CocoaBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Cocoa/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Cocoa/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Cocoa/Colors/SplatColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Cocoa/Colors/SplatColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/ReflectionStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/ReflectionStubs.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/ServiceLocationDrawingInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/ServiceLocationDrawingInitialization.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Tizen/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Tizen/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Tizen/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Tizen/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/Tizen/Bitmaps/TizenBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/Tizen/Bitmaps/TizenBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/TypeForwardedSystemDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/TypeForwardedSystemDrawing.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Bitmaps/BitmapSourceBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Bitmaps/BitmapSourceBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Colors/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Colors/ColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Colors/SplatColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Colors/SplatColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Maths/PointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Maths/PointExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Maths/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Maths/RectExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net4/Maths/SizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net4/Maths/SizeExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Bitmaps/BitmapSourceBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Bitmaps/BitmapSourceBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Colors/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Colors/ColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Colors/SplatColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Colors/SplatColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Maths/PointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Maths/PointExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Maths/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Maths/RectExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/net6/Maths/SizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/net6/Maths/SizeExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/BitmapMixins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/BitmapMixins.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/BitmapSourceBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/BitmapSourceBitmap.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/PlatformBitmapLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Bitmaps/PlatformBitmapLoader.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Colors/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Colors/ColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Colors/SplatColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Colors/SplatColorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Maths/PointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Maths/PointExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Maths/RectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Maths/RectExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Platforms/netcoreapp3/Maths/SizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Platforms/netcoreapp3/Maths/SizeExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/Splat.Drawing/Splat.Drawing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Drawing/Splat.Drawing.csproj -------------------------------------------------------------------------------- /src/Splat.DryIoc.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.DryIoc.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.DryIoc.Tests/Splat.DryIoc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc.Tests/Splat.DryIoc.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.DryIoc/Builder/DryIocSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc/Builder/DryIocSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.DryIoc/DryIocDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc/DryIocDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.DryIoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc/README.md -------------------------------------------------------------------------------- /src/Splat.DryIoc/Splat.DryIoc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc/Splat.DryIoc.csproj -------------------------------------------------------------------------------- /src/Splat.DryIoc/SplatDryIocExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.DryIoc/SplatDryIocExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/Builder/ExceptionlessSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/Builder/ExceptionlessSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/ExceptionlessFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/ExceptionlessFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/ExceptionlessSplatLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/ExceptionlessSplatLogger.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/ExceptionlessViewTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/ExceptionlessViewTracking.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/MutableDependencyResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/MutableDependencyResolverExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Exceptionless/Splat.Exceptionless.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Exceptionless/Splat.Exceptionless.csproj -------------------------------------------------------------------------------- /src/Splat.Log4Net/Builder/Log4NetSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/Builder/Log4NetSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Log4Net/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/Log4NetLogger.cs -------------------------------------------------------------------------------- /src/Splat.Log4Net/LogResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/LogResolver.cs -------------------------------------------------------------------------------- /src/Splat.Log4Net/MutableDependencyResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/MutableDependencyResolverExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Log4Net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.Log4Net/Splat.Log4Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Log4Net/Splat.Log4Net.csproj -------------------------------------------------------------------------------- /src/Splat.Logging/ActionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/ActionLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/AllocationFreeLoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/AllocationFreeLoggerBase.cs -------------------------------------------------------------------------------- /src/Splat.Logging/Builder/SplatLogManagerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/Builder/SplatLogManagerModule.cs -------------------------------------------------------------------------------- /src/Splat.Logging/Builder/SplatLoggerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/Builder/SplatLoggerModule.cs -------------------------------------------------------------------------------- /src/Splat.Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/DebugLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/DebugLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/DefaultLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/DefaultLogManager.cs -------------------------------------------------------------------------------- /src/Splat.Logging/FullLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/FullLoggerExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Logging/FuncLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/FuncLogManager.cs -------------------------------------------------------------------------------- /src/Splat.Logging/IAllocationFreeErrorLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/IAllocationFreeErrorLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/IAllocationFreeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/IAllocationFreeLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/IEnableLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/IEnableLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/IFullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/IFullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/ILogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/ILogManager.cs -------------------------------------------------------------------------------- /src/Splat.Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/IStaticFullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/IStaticFullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/LogHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/LogHost.cs -------------------------------------------------------------------------------- /src/Splat.Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Splat.Logging/LogManagerMixin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/LogManagerMixin.cs -------------------------------------------------------------------------------- /src/Splat.Logging/LoggingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/LoggingException.cs -------------------------------------------------------------------------------- /src/Splat.Logging/MemoizingMRUCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/MemoizingMRUCache.cs -------------------------------------------------------------------------------- /src/Splat.Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.Logging/Splat.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/Splat.Logging.csproj -------------------------------------------------------------------------------- /src/Splat.Logging/StaticFullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/StaticFullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/WrappingFullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/WrappingFullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/WrappingLogLevelLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/WrappingLogLevelLogger.cs -------------------------------------------------------------------------------- /src/Splat.Logging/WrappingPrefixLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Logging/WrappingPrefixLogger.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection.Tests/ContainerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection.Tests/ContainerWrapper.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection.Tests/MicrosoftDependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection.Tests/MicrosoftDependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection.Tests/Splat.Microsoft.Extensions.DependencyInjection.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection.Tests/Splat.Microsoft.Extensions.DependencyInjection.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection/Builder/MicrosoftDependencyResolverModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection/Builder/MicrosoftDependencyResolverModule.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection/MicrosoftDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection/MicrosoftDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection/README.md -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection/Splat.Microsoft.Extensions.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection/Splat.Microsoft.Extensions.DependencyInjection.csproj -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.DependencyInjection/SplatMicrosoftExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.DependencyInjection/SplatMicrosoftExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/Builder/MicrosoftExtensionsLoggingSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/Builder/MicrosoftExtensionsLoggingSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLogProvider.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLoggingExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLoggingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/MicrosoftExtensionsLoggingLogger.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/MsLoggingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/MsLoggingHelpers.cs -------------------------------------------------------------------------------- /src/Splat.Microsoft.Extensions.Logging/Splat.Microsoft.Extensions.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Microsoft.Extensions.Logging/Splat.Microsoft.Extensions.Logging.csproj -------------------------------------------------------------------------------- /src/Splat.NLog/Builder/NLogSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.NLog/Builder/NLogSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.NLog/LogResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.NLog/LogResolver.cs -------------------------------------------------------------------------------- /src/Splat.NLog/MutableDependencyResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.NLog/MutableDependencyResolverExtensions.cs -------------------------------------------------------------------------------- /src/Splat.NLog/NLogLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.NLog/NLogLogger.cs -------------------------------------------------------------------------------- /src/Splat.NLog/Splat.NLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.NLog/Splat.NLog.csproj -------------------------------------------------------------------------------- /src/Splat.Ninject.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Ninject.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Ninject.Tests/NInjectDependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject.Tests/NInjectDependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Ninject.Tests/Splat.Ninject.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject.Tests/Splat.Ninject.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Ninject/Builder/NinjectSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject/Builder/NinjectSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Ninject/NinjectDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject/NinjectDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.Ninject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject/README.md -------------------------------------------------------------------------------- /src/Splat.Ninject/Splat.Ninject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject/Splat.Ninject.csproj -------------------------------------------------------------------------------- /src/Splat.Ninject/SplatNinjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Ninject/SplatNinjectExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Prism.Forms/PrismApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism.Forms/PrismApplication.cs -------------------------------------------------------------------------------- /src/Splat.Prism.Forms/Splat.Prism.Forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism.Forms/Splat.Prism.Forms.csproj -------------------------------------------------------------------------------- /src/Splat.Prism.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Prism.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Prism.Tests/Splat.Prism.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism.Tests/Splat.Prism.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Prism/Splat.Prism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism/Splat.Prism.csproj -------------------------------------------------------------------------------- /src/Splat.Prism/SplatContainerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Prism/SplatContainerExtension.cs -------------------------------------------------------------------------------- /src/Splat.Raygun/RaygunFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Raygun/RaygunFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat.Raygun/Splat.Raygun.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Raygun/Splat.Raygun.csproj -------------------------------------------------------------------------------- /src/Splat.Serilog/Builder/SerilogSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Serilog/Builder/SerilogSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.Serilog/MutableDependencyResolverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Serilog/MutableDependencyResolverExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Serilog/SerilogFullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Serilog/SerilogFullLogger.cs -------------------------------------------------------------------------------- /src/Splat.Serilog/SerilogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Serilog/SerilogHelper.cs -------------------------------------------------------------------------------- /src/Splat.Serilog/Splat.Serilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Serilog/Splat.Serilog.csproj -------------------------------------------------------------------------------- /src/Splat.SimpleInjector.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector.Tests/DependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector.Tests/DependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector.Tests/Splat.SimpleInjector.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector.Tests/Splat.SimpleInjector.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.SimpleInjector.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } 4 | -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/Builder/SimpleInjectorSplatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/Builder/SimpleInjectorSplatModule.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/README.md -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/SimpleInjectorDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/SimpleInjectorDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/SimpleInjectorInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/SimpleInjectorInitializer.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/Splat.SimpleInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/Splat.SimpleInjector.csproj -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/SplatSimpleInjectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/SplatSimpleInjectorExtensions.cs -------------------------------------------------------------------------------- /src/Splat.SimpleInjector/TransientSimpleInjectorRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.SimpleInjector/TransientSimpleInjectorRegistration.cs -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/MainActivity.cs -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/layout/content_main.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/menu/menu_main.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/values/dimens.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Android/Splat.TestRunner.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Android/Splat.TestRunner.Android.csproj -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Package.appxmanifest -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Splat.TestRunner.Uwp.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Splat.TestRunner.Uwp.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/Splat.TestRunner.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/Splat.TestRunner.Uwp.csproj -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/UnitTestApp.xaml -------------------------------------------------------------------------------- /src/Splat.TestRunner.Uwp/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.TestRunner.Uwp/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet10_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet10_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet8_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet8_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet9_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/API/ApiApprovalTests.SplatProject.DotNet9_0.verified.txt -------------------------------------------------------------------------------- /src/Splat.Tests/API/ApiApprovalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/API/ApiApprovalTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApiExtensions.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/AppCenterFeatureUsageTrackingSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/AppCenterFeatureUsageTrackingSessionTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/AppCenterViewTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/AppCenterViewTrackingTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/ApplicationInsightsFeatureUsageTrackingSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/ApplicationInsightsFeatureUsageTrackingSessionTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/ApplicationInsightsViewTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/ApplicationInsightsViewTrackingTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/BaseFeatureUsageTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/BaseFeatureUsageTrackingTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/BaseViewTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/BaseViewTrackingTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/EnableFeatureUsageTrackingExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/EnableFeatureUsageTrackingExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/ExceptionlessFeatureUsageTrackingSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/ExceptionlessFeatureUsageTrackingSessionTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ApplicationPerformanceMonitoring/RaygunFeatureUsageTrackingSessionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ApplicationPerformanceMonitoring/RaygunFeatureUsageTrackingSessionTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/AssemblyFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/AssemblyFinderTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/AssemblyInfo.Parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/AssemblyInfo.Parallel.cs -------------------------------------------------------------------------------- /src/Splat.Tests/DisposableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/DisposableTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ExceptionMixinsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ExceptionMixinsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/LocatorSerialRegisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/LocatorSerialRegisterTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/LocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/LocatorTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/ActionLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/ActionLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/BaseTests/AllocateFreeErrorLoggerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/BaseTests/AllocateFreeErrorLoggerTestBase.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/BaseTests/AllocationFreeLoggerBaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/BaseTests/AllocationFreeLoggerBaseTestBase.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/BaseTests/FullLoggerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/BaseTests/FullLoggerTestBase.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/BaseTests/LoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/BaseTests/LoggerBase.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/BaseTests/WrappingFullLoggerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/BaseTests/WrappingFullLoggerTestBase.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/FullLoggers/NLogLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/FullLoggers/NLogLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/FullLoggers/SerilogLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/FullLoggers/SerilogLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/Helpers/FormatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/Helpers/FormatHelper.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/StaticLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/StaticLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/WrappingFullLoggers/ConsoleLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/WrappingFullLoggers/ConsoleLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/WrappingFullLoggers/ExceptionlessLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/WrappingFullLoggers/ExceptionlessLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/WrappingFullLoggers/Log4NetLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/WrappingFullLoggers/Log4NetLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/WrappingFullLoggers/MicrosoftExtensionsLoggingLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/WrappingFullLoggers/MicrosoftExtensionsLoggingLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Logging/WrappingPrefixLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Logging/WrappingPrefixLoggerTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/MemoizingMRUCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/MemoizingMRUCacheTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Mocks/IMockLogTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Mocks/IMockLogTarget.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Mocks/TextLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Mocks/TextLogger.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ModeDetection/DefaultModeDetectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ModeDetection/DefaultModeDetectorTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ModeDetection/ModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ModeDetection/ModeTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/PointMathExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/PointMathExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/RectEdgeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/RectEdgeTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/RectangleMathExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/RectangleMathExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ServiceLocation/BaseDependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ServiceLocation/BaseDependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/ServiceLocation/ModernDependencyResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/ServiceLocation/ModernDependencyResolverTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/SizeMathExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/SizeMathExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/Splat.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/Splat.Tests.csproj -------------------------------------------------------------------------------- /src/Splat.Tests/TargetFrameworkExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/TargetFrameworkExtensionsTests.cs -------------------------------------------------------------------------------- /src/Splat.Tests/XUnitHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/XUnitHelpers.cs -------------------------------------------------------------------------------- /src/Splat.Tests/splatlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/splatlogo.bmp -------------------------------------------------------------------------------- /src/Splat.Tests/splatlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/splatlogo.jpg -------------------------------------------------------------------------------- /src/Splat.Tests/splatlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/splatlogo.png -------------------------------------------------------------------------------- /src/Splat.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.Tests/xunit.runner.json -------------------------------------------------------------------------------- /src/Splat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat.sln -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/DefaultFeatureUsageTrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/DefaultFeatureUsageTrackingManager.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/DefaultFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/DefaultFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/EnableFeatureUsageTrackingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/EnableFeatureUsageTrackingExtensions.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/FuncFeatureUsageTrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/FuncFeatureUsageTrackingManager.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/IEnableFeatureUsageTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/IEnableFeatureUsageTracking.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingManager.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingSession.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingSession{TReferenceType}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/IFeatureUsageTrackingSession{TReferenceType}.cs -------------------------------------------------------------------------------- /src/Splat/ApplicationPerformanceMonitoring/IViewTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ApplicationPerformanceMonitoring/IViewTracking.cs -------------------------------------------------------------------------------- /src/Splat/AssemblyFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/AssemblyFinder.cs -------------------------------------------------------------------------------- /src/Splat/Maths/PointMathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Maths/PointMathExtensions.cs -------------------------------------------------------------------------------- /src/Splat/Maths/RectEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Maths/RectEdge.cs -------------------------------------------------------------------------------- /src/Splat/Maths/RectangleMathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Maths/RectangleMathExtensions.cs -------------------------------------------------------------------------------- /src/Splat/Maths/SizeMathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Maths/SizeMathExtensions.cs -------------------------------------------------------------------------------- /src/Splat/ModeDetection/DefaultModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ModeDetection/DefaultModeDetector.cs -------------------------------------------------------------------------------- /src/Splat/ModeDetection/IModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ModeDetection/IModeDetector.cs -------------------------------------------------------------------------------- /src/Splat/ModeDetection/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ModeDetection/Mode.cs -------------------------------------------------------------------------------- /src/Splat/ModeDetection/ModeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ModeDetection/ModeDetector.cs -------------------------------------------------------------------------------- /src/Splat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Splat/ServiceLocation/FuncDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ServiceLocation/FuncDependencyResolver.cs -------------------------------------------------------------------------------- /src/Splat/ServiceLocation/Locator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ServiceLocation/Locator.cs -------------------------------------------------------------------------------- /src/Splat/ServiceLocation/ServiceLocationInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/ServiceLocation/ServiceLocationInitialization.cs -------------------------------------------------------------------------------- /src/Splat/Splat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/Splat.csproj -------------------------------------------------------------------------------- /src/Splat/TargetFrameworkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/Splat/TargetFrameworkExtensions.cs -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/src/stylecop.json -------------------------------------------------------------------------------- /tests.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/tests.runsettings -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactiveui/splat/HEAD/version.json --------------------------------------------------------------------------------