├── .editorconfig ├── .gitignore ├── CREDITS.txt ├── ClickToBuild.cmd ├── ClickToTest.cmd ├── LICENSE.txt ├── README.md ├── SmartStoreNET.Tasks.Targets ├── SmartStoreNET.proj ├── assets ├── ready.set.go.jpg ├── sm4-devices.png ├── smartstore-icon.png ├── smartstore-text.png └── smnet3-devices-sm.png ├── changelog.md ├── how-to-build.txt ├── lib ├── Facebook │ └── Facebook.dll ├── GCheckout2.5.0.5a │ └── GCheckout.dll ├── MSBuild │ ├── Extensions │ │ ├── Interop.COMAdmin.dll │ │ ├── Interop.IWshRuntimeLibrary.dll │ │ ├── Ionic.Zip.dll │ │ ├── MSBuild.ExtensionPack.VersionNumber.targets │ │ ├── MSBuild.ExtensionPack.dll │ │ ├── MSBuild.ExtensionPack.dll.config │ │ ├── MSBuild.ExtensionPack.pdb │ │ └── MSBuild.ExtensionPack.tasks │ ├── ICSharpCode.SharpZipLib.dll │ ├── MSBuild.Community.Tasks.Targets │ └── MSBuild.Community.Tasks.dll ├── PerceptiveMCAPI │ ├── CookComputing.XmlRpcV2.dll │ ├── PerceptiveMCAPI.Export.dll │ └── PerceptiveMCAPI.dll ├── SmartStore.Licensing │ └── SmartStore.Licensing.dll ├── Telerik │ └── Telerik.Web.Mvc.dll ├── msvcp140 │ ├── x64 │ │ ├── api-ms-win-core-console-l1-1-0.dll │ │ ├── api-ms-win-core-datetime-l1-1-0.dll │ │ ├── api-ms-win-core-debug-l1-1-0.dll │ │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-2-0.dll │ │ ├── api-ms-win-core-file-l2-1-0.dll │ │ ├── api-ms-win-core-handle-l1-1-0.dll │ │ ├── api-ms-win-core-heap-l1-1-0.dll │ │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ │ ├── api-ms-win-core-localization-l1-2-0.dll │ │ ├── api-ms-win-core-memory-l1-1-0.dll │ │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ │ ├── api-ms-win-core-profile-l1-1-0.dll │ │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ │ ├── api-ms-win-core-string-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-2-0.dll │ │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ │ ├── api-ms-win-core-timezone-l1-1-0.dll │ │ ├── api-ms-win-core-util-l1-1-0.dll │ │ ├── api-ms-win-crt-conio-l1-1-0.dll │ │ ├── api-ms-win-crt-convert-l1-1-0.dll │ │ ├── api-ms-win-crt-environment-l1-1-0.dll │ │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ │ ├── api-ms-win-crt-heap-l1-1-0.dll │ │ ├── api-ms-win-crt-locale-l1-1-0.dll │ │ ├── api-ms-win-crt-math-l1-1-0.dll │ │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ │ ├── api-ms-win-crt-private-l1-1-0.dll │ │ ├── api-ms-win-crt-process-l1-1-0.dll │ │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ │ ├── api-ms-win-crt-string-l1-1-0.dll │ │ ├── api-ms-win-crt-time-l1-1-0.dll │ │ ├── api-ms-win-crt-utility-l1-1-0.dll │ │ ├── concrt140.dll │ │ ├── msvcp140.dll │ │ ├── ucrtbase.dll │ │ ├── vccorlib140.dll │ │ └── vcruntime140.dll │ └── x86 │ │ ├── api-ms-win-core-console-l1-1-0.dll │ │ ├── api-ms-win-core-datetime-l1-1-0.dll │ │ ├── api-ms-win-core-debug-l1-1-0.dll │ │ ├── api-ms-win-core-errorhandling-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-1-0.dll │ │ ├── api-ms-win-core-file-l1-2-0.dll │ │ ├── api-ms-win-core-file-l2-1-0.dll │ │ ├── api-ms-win-core-handle-l1-1-0.dll │ │ ├── api-ms-win-core-heap-l1-1-0.dll │ │ ├── api-ms-win-core-interlocked-l1-1-0.dll │ │ ├── api-ms-win-core-libraryloader-l1-1-0.dll │ │ ├── api-ms-win-core-localization-l1-2-0.dll │ │ ├── api-ms-win-core-memory-l1-1-0.dll │ │ ├── api-ms-win-core-namedpipe-l1-1-0.dll │ │ ├── api-ms-win-core-processenvironment-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-0.dll │ │ ├── api-ms-win-core-processthreads-l1-1-1.dll │ │ ├── api-ms-win-core-profile-l1-1-0.dll │ │ ├── api-ms-win-core-rtlsupport-l1-1-0.dll │ │ ├── api-ms-win-core-string-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-1-0.dll │ │ ├── api-ms-win-core-synch-l1-2-0.dll │ │ ├── api-ms-win-core-sysinfo-l1-1-0.dll │ │ ├── api-ms-win-core-timezone-l1-1-0.dll │ │ ├── api-ms-win-core-util-l1-1-0.dll │ │ ├── api-ms-win-crt-conio-l1-1-0.dll │ │ ├── api-ms-win-crt-convert-l1-1-0.dll │ │ ├── api-ms-win-crt-environment-l1-1-0.dll │ │ ├── api-ms-win-crt-filesystem-l1-1-0.dll │ │ ├── api-ms-win-crt-heap-l1-1-0.dll │ │ ├── api-ms-win-crt-locale-l1-1-0.dll │ │ ├── api-ms-win-crt-math-l1-1-0.dll │ │ ├── api-ms-win-crt-multibyte-l1-1-0.dll │ │ ├── api-ms-win-crt-private-l1-1-0.dll │ │ ├── api-ms-win-crt-process-l1-1-0.dll │ │ ├── api-ms-win-crt-runtime-l1-1-0.dll │ │ ├── api-ms-win-crt-stdio-l1-1-0.dll │ │ ├── api-ms-win-crt-string-l1-1-0.dll │ │ ├── api-ms-win-crt-time-l1-1-0.dll │ │ ├── api-ms-win-crt-utility-l1-1-0.dll │ │ ├── concrt140.dll │ │ ├── msvcp140.dll │ │ ├── ucrtbase.dll │ │ ├── vccorlib140.dll │ │ └── vcruntime140.dll ├── nuget │ └── nuget.exe ├── nunit │ ├── NUnitFitTests.html │ ├── NUnitTests.VisualState.xml │ ├── NUnitTests.config │ ├── NUnitTests.nunit │ ├── agent.conf │ ├── agent.log.conf │ ├── clr.bat │ ├── launcher.log.conf │ ├── lib │ │ ├── Images │ │ │ ├── Ellipsis.gif │ │ │ ├── Tree │ │ │ │ ├── Circles │ │ │ │ │ ├── Failure.jpg │ │ │ │ │ ├── Ignored.jpg │ │ │ │ │ ├── Inconclusive.jpg │ │ │ │ │ ├── Skipped.jpg │ │ │ │ │ └── Success.jpg │ │ │ │ ├── Classic │ │ │ │ │ ├── Failure.jpg │ │ │ │ │ ├── Ignored.jpg │ │ │ │ │ ├── Inconclusive.jpg │ │ │ │ │ ├── Skipped.jpg │ │ │ │ │ └── Success.jpg │ │ │ │ ├── Default │ │ │ │ │ ├── Failure.png │ │ │ │ │ ├── Ignored.png │ │ │ │ │ ├── Inconclusive.png │ │ │ │ │ ├── Skipped.png │ │ │ │ │ └── Success.png │ │ │ │ └── Visual Studio │ │ │ │ │ ├── Failure.png │ │ │ │ │ ├── Ignored.png │ │ │ │ │ ├── Inconclusive.png │ │ │ │ │ ├── SeriousWarning.png │ │ │ │ │ ├── Skipped.png │ │ │ │ │ └── Success.png │ │ │ ├── pinned.gif │ │ │ └── unpinned.gif │ │ ├── NSubstitute.dll │ │ ├── NSubstitute.xml │ │ ├── Rhino.Mocks.dll │ │ ├── Rhino.Mocks.xml │ │ ├── log4net.dll │ │ ├── nunit-console-runner.dll │ │ ├── nunit-gui-runner.dll │ │ ├── nunit.core.dll │ │ ├── nunit.core.interfaces.dll │ │ ├── nunit.uiexception.dll │ │ ├── nunit.uikit.dll │ │ └── nunit.util.dll │ ├── license.txt │ ├── nunit-agent-x86.exe │ ├── nunit-agent-x86.exe.config │ ├── nunit-agent.exe │ ├── nunit-agent.exe.config │ ├── nunit-console-x86.exe │ ├── nunit-console-x86.exe.config │ ├── nunit-console.exe │ ├── nunit-console.exe.config │ ├── nunit-editor.exe │ ├── nunit-x86.exe │ ├── nunit-x86.exe.config │ ├── nunit.exe │ ├── nunit.exe.config │ ├── nunit.framework.dll │ ├── pnunit-agent.exe │ ├── pnunit-agent.exe.config │ ├── pnunit-launcher.exe │ ├── pnunit-launcher.exe.config │ ├── pnunit.framework.dll │ ├── pnunit.tests.dll │ ├── runFile.exe │ ├── runFile.exe.config │ ├── runpnunit.bat │ └── test.conf ├── sqlce │ ├── MICROSOFT VISUAL C++ 2008 EXPRESS EDITION ENU.txt │ ├── REDIST_ENU.TXT │ ├── ReadmeSSCE_ENU.htm │ ├── SQLCE_EULA_ENU.rtf │ ├── System.Data.SqlServerCe.dll │ ├── x64 │ │ ├── Microsoft.VC90.CRT │ │ │ ├── Microsoft.VC90.CRT.manifest │ │ │ ├── README_ENU.txt │ │ │ └── msvcr90.dll │ │ ├── sqlceca40.dll │ │ ├── sqlcecompact40.dll │ │ ├── sqlceer40EN.dll │ │ ├── sqlceme40.dll │ │ ├── sqlceqp40.dll │ │ └── sqlcese40.dll │ └── x86 │ │ ├── Microsoft.VC90.CRT │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── README_ENU.txt │ │ └── msvcr90.dll │ │ ├── sqlceca40.dll │ │ ├── sqlcecompact40.dll │ │ ├── sqlceer40EN.dll │ │ ├── sqlceme40.dll │ │ ├── sqlceqp40.dll │ │ └── sqlcese40.dll └── vswhere │ └── vswhere.exe └── src ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── AssemblySharedInfo.cs ├── AssemblyVersionInfo.cs ├── FixRazorIntellisense.targets ├── Libraries ├── SmartStore.Core │ ├── Async │ │ ├── AsyncRunner.cs │ │ ├── AsyncStateInfo.cs │ │ ├── IAsyncState.cs │ │ └── LocalAsyncState.cs │ ├── BaseEntity.cs │ ├── Caching │ │ ├── CacheScope.cs │ │ ├── CacheScopeAccessor.cs │ │ ├── ICacheManager.cs │ │ ├── ICacheScopeAccessor.cs │ │ ├── IRequestCache.cs │ │ ├── ISet.cs │ │ ├── MemoryCacheManager.cs │ │ ├── MemorySet.cs │ │ ├── NullCache.cs │ │ ├── OutputCache │ │ │ ├── DisplayControl.cs │ │ │ ├── ICacheableRouteRegistrar.cs │ │ │ ├── IDisplayControl.cs │ │ │ ├── IOutputCacheInvalidationObserver.cs │ │ │ ├── IOutputCacheProvider.cs │ │ │ ├── NullOutputCacheProvider.cs │ │ │ └── OutputCacheItem.cs │ │ └── RequestCache.cs │ ├── Collections │ │ ├── ConcurrentMultimap.cs │ │ ├── LazyMultimap.cs │ │ ├── MultiMap.cs │ │ ├── Querystring.cs │ │ ├── ReferenceEqualityComparer.cs │ │ ├── SyncedCollection.cs │ │ ├── TopologicalSorter.cs │ │ ├── TreeNode.cs │ │ ├── TreeNodeBase.cs │ │ └── TrimmedBuffer.cs │ ├── ComponentModel │ │ ├── FastActivator.cs │ │ ├── FastInvoker.cs │ │ ├── FastProperty.cs │ │ ├── FastPropertyValueProvider.cs │ │ ├── HybridExpando.cs │ │ ├── IMapper.cs │ │ ├── MapperFactory.cs │ │ ├── MiniMapper.cs │ │ ├── PropertyBag.cs │ │ ├── SerializationUtils.cs │ │ ├── SmartContractResolver.cs │ │ └── TypeConversion │ │ │ ├── BooleanConverter.cs │ │ │ ├── DateTimeConverter.cs │ │ │ ├── DefaultTypeConverter.cs │ │ │ ├── DictionaryConverter.cs │ │ │ ├── EmailAddressConverter.cs │ │ │ ├── EnumerableConverter.cs │ │ │ ├── ITypeConverter.cs │ │ │ ├── JObjectConverter.cs │ │ │ ├── NullableConverter.cs │ │ │ ├── ProductBundleDataConverter.cs │ │ │ ├── ShippingOptionConverter.cs │ │ │ ├── TimeSpanConverter.cs │ │ │ └── TypeConverterFactory.cs │ ├── Configuration │ │ ├── ISettingService.cs │ │ ├── ISettings.cs │ │ └── JsonPersistAttribute.cs │ ├── Data │ │ ├── DataProviderFactory.cs │ │ ├── DataSettings.cs │ │ ├── DbContextScope.cs │ │ ├── DbQuerySettings.cs │ │ ├── EntityState.cs │ │ ├── Hooks │ │ │ ├── DbSaveHook.cs │ │ │ ├── DefaultDbHookHandler.cs │ │ │ ├── HookMetadata.cs │ │ │ ├── HookableAttribute.cs │ │ │ ├── HookedEntity.cs │ │ │ ├── IDbHookHandler.cs │ │ │ ├── IDbSaveHook.cs │ │ │ └── ImportantAttribute.cs │ │ ├── IDataProvider.cs │ │ ├── IDbContext.cs │ │ ├── IDbContextExtensions.cs │ │ ├── IQueryableExtensions.cs │ │ ├── IRepository.cs │ │ ├── ITransaction.cs │ │ ├── RepositoryExtensions.cs │ │ └── SqlFileTokenizer.cs │ ├── Domain │ │ ├── Affiliates │ │ │ └── Affiliate.cs │ │ ├── Blogs │ │ │ ├── BlogComment.cs │ │ │ ├── BlogExtensions.cs │ │ │ ├── BlogPost.cs │ │ │ ├── BlogPostTag.cs │ │ │ └── BlogSettings.cs │ │ ├── Catalog │ │ │ ├── AttributeChoiceBehaviour.cs │ │ │ ├── AttributeControlType.cs │ │ │ ├── BackInStockSubscription.cs │ │ │ ├── BackorderMode.cs │ │ │ ├── CatalogSettings.cs │ │ │ ├── Category.cs │ │ │ ├── CategoryNode.cs │ │ │ ├── CategoryTemplate.cs │ │ │ ├── CrossSellProduct.cs │ │ │ ├── DownloadActivationType.cs │ │ │ ├── GiftCardType.cs │ │ │ ├── IPagingOptions.cs │ │ │ ├── LowStockActivity.cs │ │ │ ├── ManageInventoryMethod.cs │ │ │ ├── Manufacturer.cs │ │ │ ├── ManufacturerTemplate.cs │ │ │ ├── PriceDisplayStyle.cs │ │ │ ├── PriceDisplayType.cs │ │ │ ├── PriceRange.cs │ │ │ ├── Product.cs │ │ │ ├── ProductAttribute.cs │ │ │ ├── ProductAttributeOption.cs │ │ │ ├── ProductAttributeOptionsSet.cs │ │ │ ├── ProductBundleData.cs │ │ │ ├── ProductBundleItem.cs │ │ │ ├── ProductBundleItemAttributeFilter.cs │ │ │ ├── ProductCategory.cs │ │ │ ├── ProductCondition.cs │ │ │ ├── ProductManufacturer.cs │ │ │ ├── ProductMediaFile.cs │ │ │ ├── ProductReview.cs │ │ │ ├── ProductReviewHelpfulness.cs │ │ │ ├── ProductSortingEnum.cs │ │ │ ├── ProductSpecificationAttribute.cs │ │ │ ├── ProductTag.cs │ │ │ ├── ProductTemplate.cs │ │ │ ├── ProductType.cs │ │ │ ├── ProductVariantAttribute.cs │ │ │ ├── ProductVariantAttributeCombination.cs │ │ │ ├── ProductVariantAttributeValue.cs │ │ │ ├── ProductVariantAttributeValueType.cs │ │ │ ├── ProductVisibility.cs │ │ │ ├── QuantiyControlType.cs │ │ │ ├── RecurringProductCyclePeriod.cs │ │ │ ├── RelatedProduct.cs │ │ │ ├── SmartStoreProductVariantAttributeCombination.cs │ │ │ ├── SpecificationAttribute.cs │ │ │ ├── SpecificationAttributeOption.cs │ │ │ ├── SpecificationAttributeOptionFilter.cs │ │ │ └── TierPrice.cs │ │ ├── Cms │ │ │ ├── MenuItemRecord.cs │ │ │ ├── MenuRecord.cs │ │ │ └── WidgetSettings.cs │ │ ├── Common │ │ │ ├── Address.cs │ │ │ ├── AddressSettings.cs │ │ │ ├── AdminAreaSettings.cs │ │ │ ├── BankConnectionSettings.cs │ │ │ ├── CommonSettings.cs │ │ │ ├── CompanyInformationSettings.cs │ │ │ ├── ContactDataSettings.cs │ │ │ ├── GenericAttribute.cs │ │ │ ├── PdfSettings.cs │ │ │ ├── PerformanceSettings.cs │ │ │ └── SocialSettings.cs │ │ ├── Configuration │ │ │ └── Setting.cs │ │ ├── Customers │ │ │ ├── Customer.cs │ │ │ ├── CustomerContent.cs │ │ │ ├── CustomerLoginType.cs │ │ │ ├── CustomerNameFormat.cs │ │ │ ├── CustomerNumberMethod.cs │ │ │ ├── CustomerNumberVisibility.cs │ │ │ ├── CustomerRole.cs │ │ │ ├── CustomerRoleMapping.cs │ │ │ ├── CustomerSettings.cs │ │ │ ├── ExternalAuthenticationRecord.cs │ │ │ ├── ExternalAuthenticationSettings.cs │ │ │ ├── PasswordFormat.cs │ │ │ ├── PrivacySettings.cs │ │ │ ├── RewardPointsHistory.cs │ │ │ ├── RewardPointsSettings.cs │ │ │ ├── SameSiteType.cs │ │ │ ├── SystemCustomerAttributeNames.cs │ │ │ ├── SystemCustomerNames.cs │ │ │ ├── SystemCustomerRoleNames.cs │ │ │ ├── TopCustomerReportLine.cs │ │ │ ├── UserRegistrationType.cs │ │ │ ├── WalletHistory.cs │ │ │ └── WalletPostingReason.cs │ │ ├── Dashboard │ │ │ └── OrderDataPoint.cs │ │ ├── DataExchange │ │ │ ├── DataExchangeEnums.cs │ │ │ ├── DataExchangeSettings.cs │ │ │ ├── ExportDeployment.cs │ │ │ ├── ExportEnums.cs │ │ │ ├── ExportFilter.cs │ │ │ ├── ExportProfile.cs │ │ │ ├── ExportProjection.cs │ │ │ ├── ImportEnums.cs │ │ │ ├── ImportProfile.cs │ │ │ └── SyncMapping.cs │ │ ├── Directory │ │ │ ├── Country.cs │ │ │ ├── Currency.cs │ │ │ ├── CurrencyRoundingRule.cs │ │ │ ├── CurrencySettings.cs │ │ │ ├── DeliveryTime.cs │ │ │ ├── ExchangeRate.cs │ │ │ ├── MeasureDimension.cs │ │ │ ├── MeasureSettings.cs │ │ │ ├── MeasureWeight.cs │ │ │ ├── QuantityUnit.cs │ │ │ └── StateProvince.cs │ │ ├── Discounts │ │ │ ├── Discount.cs │ │ │ ├── DiscountLimitationType.cs │ │ │ ├── DiscountType.cs │ │ │ └── DiscountUsageHistory.cs │ │ ├── Forums │ │ │ ├── EditorType.cs │ │ │ ├── Forum.cs │ │ │ ├── ForumDateFilter.cs │ │ │ ├── ForumGroup.cs │ │ │ ├── ForumPost.cs │ │ │ ├── ForumPostVote.cs │ │ │ ├── ForumSettings.cs │ │ │ ├── ForumSubscription.cs │ │ │ ├── ForumTopic.cs │ │ │ ├── ForumTopicSorting.cs │ │ │ ├── ForumTopicType.cs │ │ │ └── PrivateMessage.cs │ │ ├── Localization │ │ │ ├── ILocalizedEntity.cs │ │ │ ├── ILocalizedEnum.cs │ │ │ ├── Language.cs │ │ │ ├── LocaleStringResource.cs │ │ │ ├── LocalizationSettings.cs │ │ │ ├── LocalizedProperty.cs │ │ │ └── LocalizedPropertyCollection.cs │ │ ├── Logging │ │ │ ├── ActivityLog.cs │ │ │ ├── ActivityLogType.cs │ │ │ └── Log.cs │ │ ├── Media │ │ │ ├── Download.cs │ │ │ ├── Enums.cs │ │ │ ├── IHasMedia.cs │ │ │ ├── MediaAlbum.cs │ │ │ ├── MediaFile.cs │ │ │ ├── MediaFolder.cs │ │ │ ├── MediaSettings.cs │ │ │ ├── MediaStorage.cs │ │ │ ├── MediaTag.cs │ │ │ └── MediaTrack.cs │ │ ├── Messages │ │ │ ├── Campaign.cs │ │ │ ├── EmailAccount.cs │ │ │ ├── EmailAccountSettings.cs │ │ │ ├── EmailAttachmentStorageLocation.cs │ │ │ ├── Events.cs │ │ │ ├── MessageTemplate.cs │ │ │ ├── MessageTemplateNames.cs │ │ │ ├── NewsLetterSubscription.cs │ │ │ ├── QueuedEmail.cs │ │ │ └── QueuedEmailAttachment.cs │ │ ├── News │ │ │ ├── NewsComment.cs │ │ │ ├── NewsItem.cs │ │ │ └── NewsSettings.cs │ │ ├── Orders │ │ │ ├── BestsellersReportLine.cs │ │ │ ├── CheckoutAttribute.cs │ │ │ ├── CheckoutAttributeValue.cs │ │ │ ├── CheckoutEnums.cs │ │ │ ├── Events.cs │ │ │ ├── GiftCard.cs │ │ │ ├── GiftCardUsageHistory.cs │ │ │ ├── Order.cs │ │ │ ├── OrderAverageReportLine.cs │ │ │ ├── OrderAverageReportLineSummary.cs │ │ │ ├── OrderExtensions.cs │ │ │ ├── OrderItem.cs │ │ │ ├── OrderNote.cs │ │ │ ├── OrderSettings.cs │ │ │ ├── OrderStatus.cs │ │ │ ├── OrganizedShoppingCartItem.cs │ │ │ ├── RecurringPayment.cs │ │ │ ├── RecurringPaymentHistory.cs │ │ │ ├── ReturnRequest.cs │ │ │ ├── ReturnRequestStatus.cs │ │ │ ├── ShoppingCartItem.cs │ │ │ ├── ShoppingCartSettings.cs │ │ │ └── ShoppingCartType.cs │ │ ├── Payments │ │ │ ├── CapturePaymentReason.cs │ │ │ ├── PaymentMethod.cs │ │ │ ├── PaymentSettings.cs │ │ │ └── PaymentStatus.cs │ │ ├── Polls │ │ │ ├── Poll.cs │ │ │ ├── PollAnswer.cs │ │ │ └── PollVotingRecord.cs │ │ ├── Security │ │ │ ├── AclRecord.cs │ │ │ ├── DefaultPermissionRecord.cs │ │ │ ├── IAclSupported.cs │ │ │ ├── PermissionNode.cs │ │ │ ├── PermissionRecord.cs │ │ │ ├── PermissionRoleMapping.cs │ │ │ └── SecuritySettings.cs │ │ ├── Seo │ │ │ ├── CanonicalHostNameRule.cs │ │ │ ├── HomePageSettings.cs │ │ │ ├── ISlugSupported.cs │ │ │ ├── PageTitleSeoAdjustment.cs │ │ │ ├── SeoSettings.cs │ │ │ ├── UrlRecord.cs │ │ │ └── UrlRecordCollection.cs │ │ ├── Shipping │ │ │ ├── Shipment.cs │ │ │ ├── ShipmentItem.cs │ │ │ ├── ShippingMethod.cs │ │ │ ├── ShippingOption.cs │ │ │ ├── ShippingSettings.cs │ │ │ └── ShippingStatus.cs │ │ ├── StoreInformationSettings.cs │ │ ├── Stores │ │ │ ├── IStoreMappingSupported.cs │ │ │ ├── Store.cs │ │ │ ├── StoreExtensions.cs │ │ │ └── StoreMapping.cs │ │ ├── Tasks │ │ │ ├── ScheduleTask.cs │ │ │ └── ScheduleTaskHistory.cs │ │ ├── Tax │ │ │ ├── AuxiliaryServicesTaxType.cs │ │ │ ├── TaxBasedOn.cs │ │ │ ├── TaxCategory.cs │ │ │ ├── TaxDisplayType.cs │ │ │ ├── TaxSettings.cs │ │ │ └── VatNumberStatus.cs │ │ ├── Themes │ │ │ ├── ThemeSettings.cs │ │ │ └── ThemeVariable.cs │ │ └── Topics │ │ │ └── Topic.cs │ ├── Email │ │ ├── DefaultEmailSender.cs │ │ ├── EmailAddress.cs │ │ ├── EmailException.cs │ │ ├── EmailMessage.cs │ │ ├── IEmailSender.cs │ │ ├── IEmailSenderExtensions.cs │ │ └── SmtpContext.cs │ ├── Events │ │ ├── AmbigousConsumerException.cs │ │ ├── CommonMessages │ │ │ ├── AppInitScheduledTasksEvent.cs │ │ │ ├── AppRegisterGlobalFiltersEvent.cs │ │ │ └── AppStartedEvent.cs │ │ ├── ConsumeContext.cs │ │ ├── ConsumerDescriptor.cs │ │ ├── ConsumerInvoker.cs │ │ ├── EventConsumerMetadata.cs │ │ ├── FireForgetAttribute.cs │ │ ├── IConsumer.cs │ │ ├── IConsumerInvoker.cs │ │ ├── IConsumerRegistry.cs │ │ ├── IConsumerResolver.cs │ │ ├── IEventPublisher.cs │ │ └── NullEventPublisher.cs │ ├── Extensions │ │ ├── CollectionExtensions.cs │ │ ├── ConversionExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── HtmlTextWriterExtensions.cs │ │ ├── HttpExtensions.cs │ │ ├── IOExtensions.cs │ │ ├── LinqExtensions.cs │ │ ├── MiscExtensions.cs │ │ ├── NumericExtensions.cs │ │ ├── ProcessExtensions.cs │ │ ├── RegexExtensions.cs │ │ ├── RouteExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TypeExtensions.cs │ │ ├── XPathExtensions.cs │ │ ├── XmlNodeExtensions.cs │ │ └── XmlWriterExtensions.cs │ ├── Fakes │ │ ├── Extensions.cs │ │ ├── FakeController.cs │ │ ├── FakeHttpContext.cs │ │ ├── FakeHttpHandler.cs │ │ ├── FakeHttpRequest.cs │ │ ├── FakeHttpResponse.cs │ │ ├── FakeHttpSessionState.cs │ │ ├── FakeIdentity.cs │ │ └── FakePrincipal.cs │ ├── GenericEqualityComparer.cs │ ├── Html │ │ ├── BBCodeHelper.cs │ │ ├── CodeFormatter │ │ │ ├── CLikeFormat.cs │ │ │ ├── CSharpFormat.cs │ │ │ ├── CodeFormat.cs │ │ │ ├── CodeFormatHelper.cs │ │ │ ├── HighlightOptions.cs │ │ │ ├── HtmlFormat.cs │ │ │ ├── JavaScriptFormat.cs │ │ │ ├── MshFormat.cs │ │ │ ├── SourceFormat.cs │ │ │ ├── TsqlFormat.cs │ │ │ └── VisualBasicFormat.cs │ │ ├── HtmlUtils.cs │ │ └── ResolveLinksHelper.cs │ ├── HttpSecurityMode.cs │ ├── IActivatable.cs │ ├── IAuditable.cs │ ├── IHideObjectMembers.cs │ ├── IMergedData.cs │ ├── IO │ │ ├── DirectoryHasher.cs │ │ ├── IFile.cs │ │ ├── IFileSystem.cs │ │ ├── IFileSystemExtensions.cs │ │ ├── IFolder.cs │ │ ├── ImageHeader.cs │ │ ├── LocalFileSystem.cs │ │ ├── LockFile │ │ │ ├── ILockFile.cs │ │ │ ├── ILockFileManager.cs │ │ │ ├── LockFile.cs │ │ │ └── LockFileManager.cs │ │ ├── MimeTypes.cs │ │ ├── SeekableReadOnlyStream.cs │ │ ├── SymLink │ │ │ ├── FileSystemInfoExtensions.cs │ │ │ └── SymbolicLink.cs │ │ └── VirtualPath │ │ │ ├── DefaultVirtualPathProvider.cs │ │ │ ├── IVirtualFolder.cs │ │ │ ├── IVirtualPathProvider.cs │ │ │ └── VirtualFolder.cs │ ├── IPageable.cs │ ├── ISoftDeletable.cs │ ├── IStoreContext.cs │ ├── ITransient.cs │ ├── IWebHelper.cs │ ├── IWorkContext.cs │ ├── Infrastructure │ │ ├── AppDomainTypeFinder.cs │ │ ├── ApplicationEnvironment.cs │ │ ├── ApplicationStart.cs │ │ ├── ComparableObject.cs │ │ ├── ContextState.cs │ │ ├── DependencyManagement │ │ │ ├── AutofacRequestLifetimeHttpModule.cs │ │ │ ├── ContainerManager.cs │ │ │ ├── DefaultLifetimeScopeAccessor.cs │ │ │ ├── DefaultLifetimeScopeProvider.cs │ │ │ ├── IDependencyRegistrar.cs │ │ │ ├── ILifetimeScopeAccessor.cs │ │ │ └── Work.cs │ │ ├── DisposableObject.cs │ │ ├── EngineContext.cs │ │ ├── Error.cs │ │ ├── Guard.cs │ │ ├── IApplicationEnvironment.cs │ │ ├── ICloneable.cs │ │ ├── IEngine.cs │ │ ├── IOrdered.cs │ │ ├── ITypeFinder.cs │ │ ├── RegularExpressions.cs │ │ ├── Singleton.cs │ │ ├── SmartStoreEngine.cs │ │ └── WebAppTypeFinder.cs │ ├── Linq │ │ ├── Expanders │ │ │ ├── IPathExpander.cs │ │ │ ├── LambdaPathExpander.cs │ │ │ └── StringPathExpander.cs │ │ ├── ExpressionStarter.cs │ │ ├── Expressions │ │ │ ├── ExpressionVisitor.cs │ │ │ ├── MemberAccessPathVisitor.cs │ │ │ └── MemberAccessPropertyInfoVisitor.cs │ │ ├── LinqContainsPredicateBuilder.cs │ │ └── PredicateBuilder.cs │ ├── Localization │ │ ├── ILocalizationFileResolver.cs │ │ ├── LocalizationFileResolver.cs │ │ ├── LocalizationHelper.cs │ │ ├── LocalizedString.cs │ │ ├── Localizer.cs │ │ └── NullLocalizer.cs │ ├── Logging │ │ ├── IChronometer.cs │ │ ├── ICustomerActivityService.cs │ │ ├── ILogger.cs │ │ ├── ILoggerFactory.cs │ │ ├── LogLevel.cs │ │ ├── LoggingExtensions.cs │ │ ├── LoggingModule.cs │ │ ├── Notifier.cs │ │ ├── NotifyEntry.cs │ │ ├── NullLogger.cs │ │ ├── TraceLogger.cs │ │ └── log4net │ │ │ ├── Log4netLogger.cs │ │ │ ├── Log4netLoggerFactory.cs │ │ │ └── SmartFileAppender.cs │ ├── Money.cs │ ├── Packaging │ │ ├── ExtensionDescriptor.cs │ │ ├── FolderUpdater.cs │ │ ├── IPackageBuilder.cs │ │ ├── IPackageInstaller.cs │ │ ├── IPackageManager.cs │ │ ├── NuGet │ │ │ ├── ExtensionReferenceRepository.cs │ │ │ ├── FileBasedProjectSystem.cs │ │ │ ├── NugetLogger.cs │ │ │ └── NullSourceRepository.cs │ │ ├── PackageBuilder.cs │ │ ├── PackageInfo.cs │ │ ├── PackageInstaller.cs │ │ ├── PackageManager.cs │ │ ├── PackagingResult.cs │ │ ├── PackagingUtils.cs │ │ ├── Readme.txt │ │ └── Updater │ │ │ └── AppUpdater.cs │ ├── PagedList.cs │ ├── PagedList`T.cs │ ├── Plugins │ │ ├── BasePlugin.cs │ │ ├── IConfigurable.cs │ │ ├── ICookiePublisher.cs │ │ ├── IPlugin.cs │ │ ├── IPluginFinder.cs │ │ ├── LoadPluginResult.cs │ │ ├── PluginDescriptor.cs │ │ ├── PluginFileParser.cs │ │ ├── PluginFinder.cs │ │ ├── PluginManager.Cache.cs │ │ ├── PluginManager.cs │ │ └── Providers │ │ │ ├── DependentWidgetsAttribute.cs │ │ │ ├── DisplayOrderAttribute.cs │ │ │ ├── FriendlyNameAttribute.cs │ │ │ ├── IProvider.cs │ │ │ ├── IProviderManager.cs │ │ │ ├── IUserEditable.cs │ │ │ ├── IsHiddenAttribute.cs │ │ │ ├── ProviderMetadata.cs │ │ │ └── SystemNameAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteInfo.cs │ ├── Rules │ │ ├── Domain │ │ │ ├── IRulesContainer.cs │ │ │ ├── RuleEntity.cs │ │ │ └── RuleSetEntity.cs │ │ ├── Exceptions │ │ │ └── InvalidRuleOperatorException.cs │ │ ├── Filters │ │ │ ├── ExpressionHelper.cs │ │ │ ├── FilterDescriptor.cs │ │ │ ├── FilterExpression.cs │ │ │ ├── FilterExpressionGroup.cs │ │ │ ├── FilterExpressionVisitor.cs │ │ │ └── QueryableExtensions.cs │ │ ├── IRuleConstraint.cs │ │ ├── IRuleProvider.cs │ │ ├── IRuleVisitor.cs │ │ ├── Operators │ │ │ ├── CommonOperators.cs │ │ │ ├── ListOperators.cs │ │ │ ├── NumericOperators.cs │ │ │ └── StringOperators.cs │ │ ├── Rendering │ │ │ ├── IRuleOptionsProvider.cs │ │ │ ├── IRuleTemplateSelector.cs │ │ │ ├── RuleOptionsResult.cs │ │ │ ├── RuleTemplateInfo.cs │ │ │ └── RuleTemplateSelector.cs │ │ ├── RuleDescriptor.cs │ │ ├── RuleDescriptorCollection.cs │ │ ├── RuleExpression.cs │ │ ├── RuleExpressionGroup.cs │ │ ├── RuleFactory.cs │ │ ├── RuleModule.cs │ │ ├── RuleOperator.cs │ │ ├── RuleScope.cs │ │ ├── RuleStorage.cs │ │ ├── RuleType.cs │ │ ├── RuleValueSelectList.cs │ │ └── _Old │ │ │ ├── FilterExpressionBuilder.cs │ │ │ ├── MemberAccessTokenizer.cs │ │ │ └── RuleAttribute.cs │ ├── Search │ │ ├── AcquireWriterContext.cs │ │ ├── DefaultIndexManager.cs │ │ ├── Events │ │ │ ├── IndexSegmentProcessedEvent.cs │ │ │ └── IndexingCompletedEvent.cs │ │ ├── Facets │ │ │ ├── Facet.cs │ │ │ ├── FacetDescriptor.cs │ │ │ ├── FacetEnums.cs │ │ │ ├── FacetExtensions.cs │ │ │ ├── FacetGroup.cs │ │ │ └── FacetValue.cs │ │ ├── Filter │ │ │ ├── CombinedSearchFilter.cs │ │ │ ├── ISearchFilter.cs │ │ │ ├── RangeSearchFilter.cs │ │ │ ├── SearchFilter.cs │ │ │ └── SearchFilterBase.cs │ │ ├── IIndexDocument.cs │ │ ├── IIndexManager.cs │ │ ├── IIndexOperation.cs │ │ ├── IIndexProvider.cs │ │ ├── IIndexStore.cs │ │ ├── ISearchAlias.cs │ │ ├── ISearchEngine.cs │ │ ├── ISearchHit.cs │ │ ├── ISearchQuery.cs │ │ ├── IndexDocument.cs │ │ ├── IndexField.cs │ │ ├── IndexInfo.cs │ │ ├── IndexProviderBase.cs │ │ ├── NullIndexStore.cs │ │ ├── SearchDocumentType.cs │ │ ├── SearchEnums.cs │ │ ├── SearchQuery.cs │ │ ├── SearchSort.cs │ │ └── Settings │ │ │ ├── ForumSearchSettings.cs │ │ │ └── SearchSettings.cs │ ├── Security │ │ ├── IPermissionProvider.cs │ │ ├── IPermissionService.cs │ │ ├── PermissionAttribute.cs │ │ ├── PermissionHelper.cs │ │ ├── Permissions.cs │ │ └── SmartStorePrincipal.cs │ ├── SmartException.cs │ ├── SmartStore.Core.csproj │ ├── SmartStoreVersion.cs │ ├── Templating │ │ ├── DefaultTemplateManager.cs │ │ ├── ITemplate.cs │ │ ├── ITemplateEngine.cs │ │ ├── ITemplateManager.cs │ │ └── NullTemplateEngine.cs │ ├── Themes │ │ ├── DefaultThemeRegistry.cs │ │ ├── IThemeContext.cs │ │ ├── IThemeFileResolver.cs │ │ ├── IThemeRegistry.cs │ │ ├── InheritedThemeFileResult.cs │ │ ├── ThemeFolderData.cs │ │ ├── ThemeManifest.cs │ │ ├── ThemeManifestMaterializer.cs │ │ ├── ThemeSwitchedEvent.cs │ │ ├── ThemeTouchedEvent.cs │ │ ├── ThemeVariableInfo.cs │ │ └── ThemeVariableType.cs │ ├── Utilities │ │ ├── ActionDisposable.cs │ │ ├── CommonHelper.cs │ │ ├── DictionaryConverter.cs │ │ ├── FileDownloadManager.cs │ │ ├── FileSystemHelper.cs │ │ ├── HashCodeCombiner.cs │ │ ├── ImagingHelper.cs │ │ ├── Inflector.cs │ │ ├── ObjectDumper.cs │ │ ├── ObjectPools │ │ │ ├── IPooledObject.cs │ │ │ ├── LeakTrackingObjectPool.cs │ │ │ ├── ObjectPool.cs │ │ │ └── PooledStringBuilder.cs │ │ ├── PathHelper.cs │ │ ├── Prettifier.cs │ │ ├── Range.cs │ │ ├── Retry.cs │ │ ├── SeoHelper.cs │ │ ├── SmartSyndicationFeed.cs │ │ ├── StringTokenizer.cs │ │ ├── Threading │ │ │ ├── KeyedLock.cs │ │ │ ├── LockExtensions.cs │ │ │ ├── ReadLockDisposable.cs │ │ │ ├── UpgradeableReadLockDisposable.cs │ │ │ └── WriteLockDisposable.cs │ │ ├── Throttle.cs │ │ ├── TypeHelper.cs │ │ └── Wildcard.cs │ ├── WebHelper.cs │ ├── XmlHelper.cs │ ├── app.config │ └── packages.config ├── SmartStore.Data │ ├── Caching │ │ ├── CacheTransactionInterceptor.cs │ │ ├── CachingCommand.cs │ │ ├── CachingCommandDefinition.cs │ │ ├── CachingDataReader.cs │ │ ├── CachingProviderServices.cs │ │ ├── CommandTreeFacts.cs │ │ ├── Credits.txt │ │ ├── DbCacheEntry.cs │ │ ├── DbCacheExtensions.cs │ │ ├── DbCacheUtil.cs │ │ ├── DbCachingPolicy.cs │ │ ├── EfDbCache.cs │ │ ├── EfDbModelStore.cs │ │ ├── EfMappingViewCache.cs │ │ ├── EfMappingViewCacheFactory.cs │ │ ├── IDbCache.cs │ │ ├── QueryRegistrar.cs │ │ └── SingletonQueries.cs │ ├── EfDataProviderFactory.cs │ ├── EfRepository.cs │ ├── Extensions │ │ ├── DataReaderExtensions.cs │ │ ├── DbContextExtensions.cs │ │ ├── DbEntityEntryExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── IDbContextExtensions.cs │ │ └── MiscExtensions.cs │ ├── IEfDataProvider.cs │ ├── Mapping │ │ ├── Affiliates │ │ │ └── AffiliateMap.cs │ │ ├── Blogs │ │ │ ├── BlogCommentMap.cs │ │ │ └── BlogPostMap.cs │ │ ├── Catalog │ │ │ ├── BackInStockSubscriptionMap.cs │ │ │ ├── CategoryMap.cs │ │ │ ├── CategoryTemplateMap.cs │ │ │ ├── CrossSellProductMap.cs │ │ │ ├── ManufacturerMap.cs │ │ │ ├── ManufacturerTemplateMap.cs │ │ │ ├── ProductAttributeMap.cs │ │ │ ├── ProductAttributeOptionMap.cs │ │ │ ├── ProductAttributeOptionsSetMap.cs │ │ │ ├── ProductBundleItemAttributeFilterMap.cs │ │ │ ├── ProductBundleItemMap.cs │ │ │ ├── ProductCategoryMap.cs │ │ │ ├── ProductManufacturerMap.cs │ │ │ ├── ProductMap.cs │ │ │ ├── ProductMediaFileMap.cs │ │ │ ├── ProductReviewHelpfulnessMap.cs │ │ │ ├── ProductReviewMap.cs │ │ │ ├── ProductSpecificationAttributeMap.cs │ │ │ ├── ProductTagMap.cs │ │ │ ├── ProductTemplateMap.cs │ │ │ ├── ProductVariantAttributeCombinationMap.cs │ │ │ ├── ProductVariantAttributeMap.cs │ │ │ ├── ProductVariantAttributeValueMap.cs │ │ │ ├── RelatedProductMap.cs │ │ │ ├── SpecificationAttributeMap.cs │ │ │ ├── SpecificationAttributeOptionMap.cs │ │ │ └── TierPriceMap.cs │ │ ├── Common │ │ │ ├── AddressMap.cs │ │ │ └── GenericAttributeMap.cs │ │ ├── Configuration │ │ │ └── SettingMap.cs │ │ ├── Customers │ │ │ ├── CustomerContentMap.cs │ │ │ ├── CustomerMap.cs │ │ │ ├── CustomerRoleMap.cs │ │ │ ├── ExternalAuthenticationRecordMap.cs │ │ │ ├── RewardPointsHistoryMap.cs │ │ │ └── WalletHistoryMap.cs │ │ ├── DataExchange │ │ │ ├── ExportDeploymentMap.cs │ │ │ ├── ExportProfileMap.cs │ │ │ ├── ImportProfileMap.cs │ │ │ └── SyncMappingMap.cs │ │ ├── Directory │ │ │ ├── CountryMap.cs │ │ │ ├── CurrencyMap.cs │ │ │ ├── DeliveryTimeMap.cs │ │ │ ├── MeasureDimensionMap.cs │ │ │ ├── MeasureWeightMap.cs │ │ │ ├── QuantityUnitMap.cs │ │ │ └── StateProvinceMap.cs │ │ ├── Discounts │ │ │ ├── DiscountMap.cs │ │ │ └── DiscountUsageHistoryMap.cs │ │ ├── Forums │ │ │ ├── ForumGroupMap.cs │ │ │ ├── ForumMap.cs │ │ │ ├── ForumPostMap.cs │ │ │ ├── ForumPostVoteMap.cs │ │ │ ├── ForumSubscriptionMap.cs │ │ │ ├── ForumTopicMap.cs │ │ │ └── PrivateMessageMap.cs │ │ ├── Localization │ │ │ ├── LanguageMap.cs │ │ │ ├── LocaleStringResourceMap.cs │ │ │ └── LocalizedPropertyMap.cs │ │ ├── Logging │ │ │ ├── ActivityLogMap.cs │ │ │ ├── ActivityLogTypeMap.cs │ │ │ └── LogMap.cs │ │ ├── Media │ │ │ ├── DownloadMap.cs │ │ │ ├── MediaFileMap.cs │ │ │ ├── MediaFolderMap.cs │ │ │ ├── MediaStorageMap.cs │ │ │ ├── MediaTagMap.cs │ │ │ └── MediaTrackMap.cs │ │ ├── Messages │ │ │ ├── CampaignMap.cs │ │ │ ├── EmailAccountMap.cs │ │ │ ├── MessageTemplateMap.cs │ │ │ ├── NewsLetterSubscriptionMap.cs │ │ │ ├── QueuedEmailAttachmentMap.cs │ │ │ └── QueuedEmailMap.cs │ │ ├── News │ │ │ ├── NewsCommentMap.cs │ │ │ └── NewsItemMap.cs │ │ ├── Orders │ │ │ ├── CheckoutAttributeMap.cs │ │ │ ├── CheckoutAttributeValueMap.cs │ │ │ ├── GiftCardMap.cs │ │ │ ├── GiftCardUsageHistoryMap.cs │ │ │ ├── OrderItemMap.cs │ │ │ ├── OrderMap.cs │ │ │ ├── OrderNoteMap.cs │ │ │ ├── RecurringPaymentHistoryMap.cs │ │ │ ├── RecurringPaymentMap.cs │ │ │ ├── ReturnRequestMap.cs │ │ │ └── ShoppingCartItemMap.cs │ │ ├── Payments │ │ │ └── PaymentMethodMap.cs │ │ ├── Polls │ │ │ ├── PollAnswerMap.cs │ │ │ ├── PollMap.cs │ │ │ └── PollVotingRecordMap.cs │ │ ├── Rules │ │ │ └── RuleEntityMap.cs │ │ ├── Security │ │ │ ├── AclRecordMap.cs │ │ │ └── PermissionRecordMap.cs │ │ ├── Seo │ │ │ └── UrlRecordMap.cs │ │ ├── Shipping │ │ │ ├── ShipmentItemMap.cs │ │ │ ├── ShipmentMap.cs │ │ │ └── ShippingMethodMap.cs │ │ ├── Stores │ │ │ ├── StoreMap.cs │ │ │ └── StoreMappingMap.cs │ │ ├── Tasks │ │ │ ├── ScheduleTaskHistoryMap.cs │ │ │ └── ScheduleTaskMap.cs │ │ ├── Tax │ │ │ └── TaxCategoryMap.cs │ │ ├── Themes │ │ │ └── ThemeVariableMap.cs │ │ └── Topics │ │ │ └── TopicMap.cs │ ├── Migrations │ │ ├── 201705281903241_MoreIndexes.Designer.cs │ │ ├── 201705281903241_MoreIndexes.cs │ │ ├── 201705281903241_MoreIndexes.resx │ │ ├── 201706020759565_UpdateMediaPath.Designer.cs │ │ ├── 201706020759565_UpdateMediaPath.cs │ │ ├── 201706020759565_UpdateMediaPath.resx │ │ ├── 201707190940318_V302Resources.Designer.cs │ │ ├── 201707190940318_V302Resources.cs │ │ ├── 201707190940318_V302Resources.resx │ │ ├── 201707281452589_TierPriceCalcMethod.Designer.cs │ │ ├── 201707281452589_TierPriceCalcMethod.cs │ │ ├── 201707281452589_TierPriceCalcMethod.resx │ │ ├── 201708251628482_SystemTopics.Designer.cs │ │ ├── 201708251628482_SystemTopics.cs │ │ ├── 201708251628482_SystemTopics.resx │ │ ├── 201709141000226_V303Resources.Designer.cs │ │ ├── 201709141000226_V303Resources.cs │ │ ├── 201709141000226_V303Resources.resx │ │ ├── 201709251538312_UpdateTrustedShopsTask.Designer.cs │ │ ├── 201709251538312_UpdateTrustedShopsTask.cs │ │ ├── 201709251538312_UpdateTrustedShopsTask.resx │ │ ├── 201710102038287_CurrencyRounding.Designer.cs │ │ ├── 201710102038287_CurrencyRounding.cs │ │ ├── 201710102038287_CurrencyRounding.resx │ │ ├── 201710252016556_IndexOptionNames.Designer.cs │ │ ├── 201710252016556_IndexOptionNames.cs │ │ ├── 201710252016556_IndexOptionNames.resx │ │ ├── 201711112331162_ProductMainPictureId.Designer.cs │ │ ├── 201711112331162_ProductMainPictureId.cs │ │ ├── 201711112331162_ProductMainPictureId.resx │ │ ├── 201711222311112_MoveFsMedia.Designer.cs │ │ ├── 201711222311112_MoveFsMedia.cs │ │ ├── 201711222311112_MoveFsMedia.resx │ │ ├── 201711291017168_SyncStringResources.Designer.cs │ │ ├── 201711291017168_SyncStringResources.cs │ │ ├── 201711291017168_SyncStringResources.resx │ │ ├── 201712081631552_Liquid.Designer.cs │ │ ├── 201712081631552_Liquid.cs │ │ ├── 201712081631552_Liquid.resx │ │ ├── 201712290151517_AddressFormat.Designer.cs │ │ ├── 201712290151517_AddressFormat.cs │ │ ├── 201712290151517_AddressFormat.resx │ │ ├── 201802081830029_ShippingMethodMultistore.Designer.cs │ │ ├── 201802081830029_ShippingMethodMultistore.cs │ │ ├── 201802081830029_ShippingMethodMultistore.resx │ │ ├── 201802270844034_ExportAttributeMappings.Designer.cs │ │ ├── 201802270844034_ExportAttributeMappings.cs │ │ ├── 201802270844034_ExportAttributeMappings.resx │ │ ├── 201804060721031_Wallet.Designer.cs │ │ ├── 201804060721031_Wallet.cs │ │ ├── 201804060721031_Wallet.resx │ │ ├── 201804090744324_ForceSslForAllPages.Designer.cs │ │ ├── 201804090744324_ForceSslForAllPages.cs │ │ ├── 201804090744324_ForceSslForAllPages.resx │ │ ├── 201804200835273_V310Resources.Designer.cs │ │ ├── 201804200835273_V310Resources.cs │ │ ├── 201804200835273_V310Resources.resx │ │ ├── 201804252356096_TopicSlugs.Designer.cs │ │ ├── 201804252356096_TopicSlugs.cs │ │ ├── 201804252356096_TopicSlugs.resx │ │ ├── 201805250724399_V315Resources.Designer.cs │ │ ├── 201805250724399_V315Resources.cs │ │ ├── 201805250724399_V315Resources.resx │ │ ├── 201806051221399_RefundReturnRequests.Designer.cs │ │ ├── 201806051221399_RefundReturnRequests.cs │ │ ├── 201806051221399_RefundReturnRequests.resx │ │ ├── 201806231547270_ScheduleTaskHistory.Designer.cs │ │ ├── 201806231547270_ScheduleTaskHistory.cs │ │ ├── 201806231547270_ScheduleTaskHistory.resx │ │ ├── 201807051830375_MoveCustomerFields.Designer.cs │ │ ├── 201807051830375_MoveCustomerFields.cs │ │ ├── 201807051830375_MoveCustomerFields.resx │ │ ├── 201807122120062_TopicAcl.Designer.cs │ │ ├── 201807122120062_TopicAcl.cs │ │ ├── 201807122120062_TopicAcl.resx │ │ ├── 201807191020207_OrderItemDeliveryTime.Designer.cs │ │ ├── 201807191020207_OrderItemDeliveryTime.cs │ │ ├── 201807191020207_OrderItemDeliveryTime.resx │ │ ├── 201807201157391_DownloadVersions.Designer.cs │ │ ├── 201807201157391_DownloadVersions.cs │ │ ├── 201807201157391_DownloadVersions.resx │ │ ├── 201807311708428_ProductPreviewPicture.Designer.cs │ │ ├── 201807311708428_ProductPreviewPicture.cs │ │ ├── 201807311708428_ProductPreviewPicture.resx │ │ ├── 201808051818238_Merge4.Designer.cs │ │ ├── 201808051818238_Merge4.cs │ │ ├── 201808051818238_Merge4.resx │ │ ├── 201809171309522_NewsletterSubscriptionLanguage.Designer.cs │ │ ├── 201809171309522_NewsletterSubscriptionLanguage.cs │ │ ├── 201809171309522_NewsletterSubscriptionLanguage.resx │ │ ├── 201809261026134_ForumGroupAcl.Designer.cs │ │ ├── 201809261026134_ForumGroupAcl.cs │ │ ├── 201809261026134_ForumGroupAcl.resx │ │ ├── 201810011954195_ForumPostVote.Designer.cs │ │ ├── 201810011954195_ForumPostVote.cs │ │ ├── 201810011954195_ForumPostVote.resx │ │ ├── 201810231214068_DataExchangeEnhancements.Designer.cs │ │ ├── 201810231214068_DataExchangeEnhancements.cs │ │ ├── 201810231214068_DataExchangeEnhancements.resx │ │ ├── 201811061745204_IsSystemProductIndex.Designer.cs │ │ ├── 201811061745204_IsSystemProductIndex.cs │ │ ├── 201811061745204_IsSystemProductIndex.resx │ │ ├── 201811082148279_LocalizedPropertyKeyGroupIndex.Designer.cs │ │ ├── 201811082148279_LocalizedPropertyKeyGroupIndex.cs │ │ ├── 201811082148279_LocalizedPropertyKeyGroupIndex.resx │ │ ├── 201811161142587_TaskHistoryErrorLength.Designer.cs │ │ ├── 201811161142587_TaskHistoryErrorLength.cs │ │ ├── 201811161142587_TaskHistoryErrorLength.resx │ │ ├── 201811202204501_ProductIndexSeekExport.Designer.cs │ │ ├── 201811202204501_ProductIndexSeekExport.cs │ │ ├── 201811202204501_ProductIndexSeekExport.resx │ │ ├── 201902211855242_TopicHtmlIdAndBodyCss.Designer.cs │ │ ├── 201902211855242_TopicHtmlIdAndBodyCss.cs │ │ ├── 201902211855242_TopicHtmlIdAndBodyCss.resx │ │ ├── 201904110735029_Menus.Designer.cs │ │ ├── 201904110735029_Menus.cs │ │ ├── 201904110735029_Menus.resx │ │ ├── 201905020948354_WidgetTopics.Designer.cs │ │ ├── 201905020948354_WidgetTopics.cs │ │ ├── 201905020948354_WidgetTopics.resx │ │ ├── 201905101159134_V320Resources.Designer.cs │ │ ├── 201905101159134_V320Resources.cs │ │ ├── 201905101159134_V320Resources.resx │ │ ├── 201905271110370_V321Resources.Designer.cs │ │ ├── 201905271110370_V321Resources.cs │ │ ├── 201905271110370_V321Resources.resx │ │ ├── 201906252008551_QuantityUnitNamePlural.Designer.cs │ │ ├── 201906252008551_QuantityUnitNamePlural.cs │ │ ├── 201906252008551_QuantityUnitNamePlural.resx │ │ ├── 201907032251575_CategoryExternalLink.Designer.cs │ │ ├── 201907032251575_CategoryExternalLink.cs │ │ ├── 201907032251575_CategoryExternalLink.resx │ │ ├── 201907221803421_GranularPermissions.Designer.cs │ │ ├── 201907221803421_GranularPermissions.cs │ │ ├── 201907221803421_GranularPermissions.resx │ │ ├── 201907250103367_RuleSystem.Designer.cs │ │ ├── 201907250103367_RuleSystem.cs │ │ ├── 201907250103367_RuleSystem.resx │ │ ├── 201908050758298_MoveFurtherCustomerFields.Designer.cs │ │ ├── 201908050758298_MoveFurtherCustomerFields.cs │ │ ├── 201908050758298_MoveFurtherCustomerFields.resx │ │ ├── 201908150749388_V322Resources.Designer.cs │ │ ├── 201908150749388_V322Resources.cs │ │ ├── 201908150749388_V322Resources.resx │ │ ├── 201908211821559_Merge5.Designer.cs │ │ ├── 201908211821559_Merge5.cs │ │ ├── 201908211821559_Merge5.resx │ │ ├── 201908211825244_ProductTagPublished.Designer.cs │ │ ├── 201908211825244_ProductTagPublished.cs │ │ ├── 201908211825244_ProductTagPublished.resx │ │ ├── 201908261226350_MenuItemMultistore.Designer.cs │ │ ├── 201908261226350_MenuItemMultistore.cs │ │ ├── 201908261226350_MenuItemMultistore.resx │ │ ├── 201909291043284_BlogAndNewsItemPictures.Designer.cs │ │ ├── 201909291043284_BlogAndNewsItemPictures.cs │ │ ├── 201909291043284_BlogAndNewsItemPictures.resx │ │ ├── 201910021805242_RemoveOldPermissions.Designer.cs │ │ ├── 201910021805242_RemoveOldPermissions.cs │ │ ├── 201910021805242_RemoveOldPermissions.resx │ │ ├── 201910162004581_Merge6.Designer.cs │ │ ├── 201910162004581_Merge6.cs │ │ ├── 201910162004581_Merge6.resx │ │ ├── 201911090805330_ProductVisibility.Designer.cs │ │ ├── 201911090805330_ProductVisibility.cs │ │ ├── 201911090805330_ProductVisibility.resx │ │ ├── 201911120909434_Merge7.Designer.cs │ │ ├── 201911120909434_Merge7.cs │ │ ├── 201911120909434_Merge7.resx │ │ ├── 201911141820264_ScheduleTaskPriority.Designer.cs │ │ ├── 201911141820264_ScheduleTaskPriority.cs │ │ ├── 201911141820264_ScheduleTaskPriority.resx │ │ ├── 201912051209105_MessageTemplateEmailAddress.Designer.cs │ │ ├── 201912051209105_MessageTemplateEmailAddress.cs │ │ ├── 201912051209105_MessageTemplateEmailAddress.resx │ │ ├── 201912111821362_AddNewPermissions.Designer.cs │ │ ├── 201912111821362_AddNewPermissions.cs │ │ ├── 201912111821362_AddNewPermissions.resx │ │ ├── 202001141118171_SpecificationAttributeColorAndPicture.Designer.cs │ │ ├── 202001141118171_SpecificationAttributeColorAndPicture.cs │ │ ├── 202001141118171_SpecificationAttributeColorAndPicture.resx │ │ ├── 202001221054109_ManufacturerBottomDescription.Designer.cs │ │ ├── 202001221054109_ManufacturerBottomDescription.cs │ │ ├── 202001221054109_ManufacturerBottomDescription.resx │ │ ├── 202001301039020_DiscountRuleSets.Designer.cs │ │ ├── 202001301039020_DiscountRuleSets.cs │ │ ├── 202001301039020_DiscountRuleSets.resx │ │ ├── 202002172101120_PictureMediaRename.Designer.cs │ │ ├── 202002172101120_PictureMediaRename.cs │ │ ├── 202002172101120_PictureMediaRename.resx │ │ ├── 202002180228163_PictureMediaRename1.Designer.cs │ │ ├── 202002180228163_PictureMediaRename1.cs │ │ ├── 202002180228163_PictureMediaRename1.resx │ │ ├── 202002191252074_RemoveDiscountRequirements.Designer.cs │ │ ├── 202002191252074_RemoveDiscountRequirements.cs │ │ ├── 202002191252074_RemoveDiscountRequirements.resx │ │ ├── 202002211011108_GenericMessageTemplate.Designer.cs │ │ ├── 202002211011108_GenericMessageTemplate.cs │ │ ├── 202002211011108_GenericMessageTemplate.resx │ │ ├── 202002241354543_ProductCondition.Designer.cs │ │ ├── 202002241354543_ProductCondition.cs │ │ ├── 202002241354543_ProductCondition.resx │ │ ├── 202002251510114_ManufacturerSubjectToAcl.Designer.cs │ │ ├── 202002251510114_ManufacturerSubjectToAcl.cs │ │ ├── 202002251510114_ManufacturerSubjectToAcl.resx │ │ ├── 202002271206204_ShipmentTrackingUrl.Designer.cs │ │ ├── 202002271206204_ShipmentTrackingUrl.cs │ │ ├── 202002271206204_ShipmentTrackingUrl.resx │ │ ├── 202002280005340_MediaManager.Designer.cs │ │ ├── 202002280005340_MediaManager.cs │ │ ├── 202002280005340_MediaManager.resx │ │ ├── 202003022018038_Merge8.Designer.cs │ │ ├── 202003022018038_Merge8.cs │ │ ├── 202003022018038_Merge8.resx │ │ ├── 202003052100521_CustomerRoleMappings.Designer.cs │ │ ├── 202003052100521_CustomerRoleMappings.cs │ │ ├── 202003052100521_CustomerRoleMappings.resx │ │ ├── 202003112359492_MediaManager2.Designer.cs │ │ ├── 202003112359492_MediaManager2.cs │ │ ├── 202003112359492_MediaManager2.resx │ │ ├── 202003171812584_CookieManager.Designer.cs │ │ ├── 202003171812584_CookieManager.cs │ │ ├── 202003171812584_CookieManager.resx │ │ ├── 202003251118391_CategoryRuleSets.Designer.cs │ │ ├── 202003251118391_CategoryRuleSets.cs │ │ ├── 202003251118391_CategoryRuleSets.resx │ │ ├── 202003311314082_CookieManagerCountries.Designer.cs │ │ ├── 202003311314082_CookieManagerCountries.cs │ │ ├── 202003311314082_CookieManagerCountries.resx │ │ ├── 202004301922188_RemoveCustomerCustomerRoles.Designer.cs │ │ ├── 202004301922188_RemoveCustomerCustomerRoles.cs │ │ ├── 202004301922188_RemoveCustomerCustomerRoles.resx │ │ ├── 202005111006305_CampaignSubjectToAcl.Designer.cs │ │ ├── 202005111006305_CampaignSubjectToAcl.cs │ │ ├── 202005111006305_CampaignSubjectToAcl.resx │ │ ├── 202005201826512_MediaManager3.Designer.cs │ │ ├── 202005201826512_MediaManager3.cs │ │ ├── 202005201826512_MediaManager3.resx │ │ ├── 202006250801086_V400Resources.Designer.cs │ │ ├── 202006250801086_V400Resources.cs │ │ ├── 202006250801086_V400Resources.resx │ │ ├── 202007160058551_MediaFileIndexReorg.Designer.cs │ │ ├── 202007160058551_MediaFileIndexReorg.cs │ │ ├── 202007160058551_MediaFileIndexReorg.resx │ │ ├── 202007241131557_V401Resources.Designer.cs │ │ ├── 202007241131557_V401Resources.cs │ │ ├── 202007241131557_V401Resources.resx │ │ ├── 202007291847004_NewPropertiesAndIndexes.Designer.cs │ │ ├── 202007291847004_NewPropertiesAndIndexes.cs │ │ ├── 202007291847004_NewPropertiesAndIndexes.resx │ │ ├── 202007301117363_AddCustomerRoleOrderAmount.Designer.cs │ │ ├── 202007301117363_AddCustomerRoleOrderAmount.cs │ │ ├── 202007301117363_AddCustomerRoleOrderAmount.resx │ │ ├── 202008181949580_RenamedCustomerRoleOrderTotal.Designer.cs │ │ ├── 202008181949580_RenamedCustomerRoleOrderTotal.cs │ │ ├── 202008181949580_RenamedCustomerRoleOrderTotal.resx │ │ ├── 202009021705132_Merge9.Designer.cs │ │ ├── 202009021705132_Merge9.cs │ │ ├── 202009021705132_Merge9.resx │ │ ├── 202009041122208_ShopIcons.Designer.cs │ │ ├── 202009041122208_ShopIcons.cs │ │ ├── 202009041122208_ShopIcons.resx │ │ ├── 202009090817220_DeliveryTimeMinMaxDays.Designer.cs │ │ ├── 202009090817220_DeliveryTimeMinMaxDays.cs │ │ ├── 202009090817220_DeliveryTimeMinMaxDays.resx │ │ ├── 202010011005387_TopicCookieType.Designer.cs │ │ ├── 202010011005387_TopicCookieType.cs │ │ ├── 202010011005387_TopicCookieType.resx │ │ ├── 202010030939136_AttributeChoiceBehaviour.Designer.cs │ │ ├── 202010030939136_AttributeChoiceBehaviour.cs │ │ ├── 202010030939136_AttributeChoiceBehaviour.resx │ │ ├── 202010121359446_RemoveBlogAndNewsLanguage.Designer.cs │ │ ├── 202010121359446_RemoveBlogAndNewsLanguage.cs │ │ ├── 202010121359446_RemoveBlogAndNewsLanguage.resx │ │ ├── 202011091154314_V410Resources.Designer.cs │ │ ├── 202011091154314_V410Resources.cs │ │ ├── 202011091154314_V410Resources.resx │ │ ├── 202012051645539_AddBlogAndNewsLanguage.Designer.cs │ │ ├── 202012051645539_AddBlogAndNewsLanguage.cs │ │ ├── 202012051645539_AddBlogAndNewsLanguage.resx │ │ ├── 202101251149352_V411Resources.Designer.cs │ │ ├── 202101251149352_V411Resources.cs │ │ ├── 202101251149352_V411Resources.resx │ │ ├── 202112171231491_V420Resources.Designer.cs │ │ ├── 202112171231491_V420Resources.cs │ │ ├── 202112171231491_V420Resources.resx │ │ └── MigrationsConfiguration.cs │ ├── ObjectContextBase.SaveChanges.cs │ ├── ObjectContextBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Setup │ │ ├── Builder │ │ │ ├── ActivityLogTypeMigrator.cs │ │ │ ├── BuilderDbContextExtensions.cs │ │ │ ├── LocaleResourcesBuilder.cs │ │ │ ├── LocaleResourcesMigrator.cs │ │ │ ├── SettingsBuilder.cs │ │ │ └── SettingsMigrator.cs │ │ ├── DbMigrationContext.cs │ │ ├── DbMigrationException.cs │ │ ├── DbSeedingMigrator.cs │ │ ├── IDataSeeder.cs │ │ ├── IDbMigrationExtensions.cs │ │ ├── ILocaleResourcesProvider.cs │ │ ├── InstallDatabaseInitializer.cs │ │ ├── MigrateDatabaseInitializer.cs │ │ ├── MigratorUtils.cs │ │ ├── SeedData │ │ │ ├── InvariantSeedData.ActivityLogTypes.cs │ │ │ ├── InvariantSeedData.Categories.cs │ │ │ ├── InvariantSeedData.Countries.cs │ │ │ ├── InvariantSeedData.Manufacturers.cs │ │ │ ├── InvariantSeedData.Products.cs │ │ │ ├── InvariantSeedData.SpecificationAttributes.cs │ │ │ ├── InvariantSeedData.Variants.cs │ │ │ ├── InvariantSeedData.cs │ │ │ ├── SeedDataConfiguration.cs │ │ │ ├── SeedDataException.cs │ │ │ └── SeedEntityExtensions.cs │ │ └── SeedDbMigrationEvent.cs │ ├── SmartDbConfiguration.cs │ ├── SmartObjectContext.cs │ ├── SmartObjectContextSaveHook.cs │ ├── SmartStore.Data.csproj │ ├── Sql │ │ ├── Indexes.Inverse.sql │ │ ├── Indexes.SqlServer.Inverse.sql │ │ ├── Indexes.SqlServer.sql │ │ ├── Indexes.sql │ │ ├── StoredProcedures.Inverse.sql │ │ └── StoredProcedures.sql │ ├── SqlCeDataProvider.cs │ ├── SqlServerDataProvider.cs │ ├── Utilities │ │ ├── BlogPostConverter.cs │ │ ├── DataMigrator.cs │ │ ├── FastPager.cs │ │ ├── MessageTemplateConverter.cs │ │ ├── NewsItemConverter.cs │ │ └── SqlBlobStream.cs │ ├── app.config │ └── packages.config └── SmartStore.Services │ ├── Affiliates │ ├── AffiliateService.cs │ └── IAffiliateService.cs │ ├── Authentication │ ├── External │ │ ├── AuthorizationResult.cs │ │ ├── AuthorizeState.cs │ │ ├── ExternalAuthorizer.cs │ │ ├── ExternalAuthorizerHelper.cs │ │ ├── IClaimsTranslator.cs │ │ ├── IExternalAuthenticationMethod.cs │ │ ├── IExternalAuthorizer.cs │ │ ├── IExternalProviderAuthorizer.cs │ │ ├── IOpenAuthenticationService.cs │ │ ├── OpenAuthenticationParameters.cs │ │ ├── OpenAuthenticationService.cs │ │ ├── OpenAuthenticationStatus.cs │ │ ├── OpenAuthentificationExtentions.cs │ │ ├── RegistrationDetails.cs │ │ └── UserClaims.cs │ ├── FormsAuthenticationService.cs │ └── IAuthenticationService.cs │ ├── Blogs │ ├── BlogExtensions.cs │ ├── BlogMessageFactoryExtensions.cs │ ├── BlogService.cs │ └── IBlogService.cs │ ├── Caching │ └── ClearCacheTask.cs │ ├── Cart │ ├── Readme.txt │ ├── RenderingOrderTotalsEvent.cs │ ├── Rules │ │ ├── CartRuleContext.cs │ │ ├── CartRuleDescriptor.cs │ │ ├── CartRuleProvider.cs │ │ ├── CompositeRule.cs │ │ ├── IRule.cs │ │ ├── Impl │ │ │ ├── BillingCountryRule.cs │ │ │ ├── CartItemQuantityRule.cs │ │ │ ├── CartProductCountRule.cs │ │ │ ├── CartSubtotalRule.cs │ │ │ ├── CartTotalRule.cs │ │ │ ├── CurrencyRule.cs │ │ │ ├── CustomerRoleRule.cs │ │ │ ├── IPCountryRule.cs │ │ │ ├── LanguageRule.cs │ │ │ ├── OrderCountRule.cs │ │ │ ├── PaidByRule.cs │ │ │ ├── PaymentMethodRule.cs │ │ │ ├── ProductFromCategoryInCartRule.cs │ │ │ ├── ProductFromManufacturerInCartRule.cs │ │ │ ├── ProductInCartRule.cs │ │ │ ├── ProductOnWishlistRule.cs │ │ │ ├── ProductReviewCountRule.cs │ │ │ ├── PurchasedFromManufacturerRule.cs │ │ │ ├── PurchasedProductRule.cs │ │ │ ├── RewardPointsBalanceRule.cs │ │ │ ├── RuleSetRule.cs │ │ │ ├── ShippingCountryRule.cs │ │ │ ├── ShippingMethodRule.cs │ │ │ ├── SpentAmountRule.cs │ │ │ ├── StoreRule.cs │ │ │ ├── UserAgent │ │ │ │ ├── BrowserMajorVersionRule.cs │ │ │ │ ├── BrowserMinorVersionRule.cs │ │ │ │ ├── BrowserRule.cs │ │ │ │ ├── DeviceRule.cs │ │ │ │ ├── IsMobileRule.cs │ │ │ │ └── OSRule.cs │ │ │ └── WeekdayRule.cs │ │ └── ListRuleBase.cs │ └── ValidatingCartEvent.cs │ ├── Catalog │ ├── AdjustInventoryResult.cs │ ├── BackInStockSubscriptionService.cs │ ├── CatalogMessageFactoryExtensions.cs │ ├── CategoryExtensions.cs │ ├── CategoryService.cs │ ├── CategoryTemplateService.cs │ ├── CategoryTreeChangeHandler.cs │ ├── CompareProductsService.cs │ ├── CopyProductService.cs │ ├── Extensions │ │ ├── ProductUrlHelper.cs │ │ ├── ProductUrlHelperExtensions.cs │ │ └── ProductVariantQueryExtensions.cs │ ├── IBackInStockSubscriptionService.cs │ ├── ICategoryService.cs │ ├── ICategoryTemplateService.cs │ ├── ICompareProductsService.cs │ ├── ICopyProductService.cs │ ├── IManufacturerService.cs │ ├── IManufacturerTemplateService.cs │ ├── IPriceCalculationService.cs │ ├── IPriceFormatter.cs │ ├── IProductAttributeFormatter.cs │ ├── IProductAttributeParser.cs │ ├── IProductAttributeService.cs │ ├── IProductService.cs │ ├── IProductTagService.cs │ ├── IProductTemplateService.cs │ ├── IRecentlyViewedProductsService.cs │ ├── ISpecificationAttributeService.cs │ ├── Importer │ │ ├── CategoryImporter.cs │ │ └── ProductImporter.cs │ ├── ManufacturerService.cs │ ├── ManufacturerTemplateService.cs │ ├── Modelling │ │ ├── CheckoutAttributeQueryItem.cs │ │ ├── GiftCardQueryItem.cs │ │ ├── IProductVariantQueryFactory.cs │ │ ├── ProductVariantQuery.cs │ │ ├── ProductVariantQueryFactory.cs │ │ ├── ProductVariantQueryItem.cs │ │ └── ProductVariantQueryModelBinder.cs │ ├── PriceCalculationContext.cs │ ├── PriceCalculationService.cs │ ├── PriceFormatter.cs │ ├── ProductAttributeExtensions.cs │ ├── ProductAttributeFormatter.cs │ ├── ProductAttributeParser.cs │ ├── ProductAttributeService.cs │ ├── ProductExtensions.cs │ ├── ProductService.cs │ ├── ProductTagService.cs │ ├── ProductTemplateService.cs │ ├── RecentlyViewedProductsService.cs │ ├── Rules │ │ ├── IProductRuleProvider.cs │ │ ├── ProductRuleEvaluatorTask.cs │ │ ├── ProductRuleProvider.cs │ │ ├── SearchFilterDescriptor.cs │ │ └── SearchFilterExpressionGroup.cs │ ├── SpecificationAttributeService.cs │ └── TierPriceExtensions.cs │ ├── Cms │ ├── Blocks │ │ ├── BlockHandlerBase.cs │ │ ├── BlockMetadata.cs │ │ ├── IBindableBlock.cs │ │ ├── IBindableBlockHandler.cs │ │ ├── IBlock.cs │ │ ├── IBlockContainer.cs │ │ ├── IBlockEntity.cs │ │ ├── IBlockHandler.cs │ │ └── StoryAssetAttribute.cs │ ├── ILinkResolver.cs │ ├── IWidget.cs │ ├── IWidgetService.cs │ ├── LinkResolver.cs │ ├── LinkResolverInvalidator.cs │ ├── LinkResolverResult.cs │ ├── Menus │ │ ├── IMenuStorage.cs │ │ ├── MenuInfo.cs │ │ └── MenuStorage.cs │ ├── WidgetExtensions.cs │ └── WidgetService.cs │ ├── Common │ ├── AddressExtensions.cs │ ├── AddressService.cs │ ├── GenericAttributeExtensions.cs │ ├── GenericAttributeService.cs │ ├── IAddressService.cs │ ├── IGenericAttributeService.cs │ ├── IMaintenanceService.cs │ ├── IMobileDeviceHelper.cs │ ├── IUserAgent.cs │ ├── MaintenanceService.cs │ ├── MobileDeviceHelper.cs │ ├── TempFileCleanupTask.cs │ └── UAParserUserAgent.cs │ ├── CommonServices.cs │ ├── Configuration │ └── SettingService.cs │ ├── Customers │ ├── ChangePasswordRequest.cs │ ├── CookieManager.cs │ ├── CustomerContentService.cs │ ├── CustomerExtensions.cs │ ├── CustomerMessageFactoryExtensions.cs │ ├── CustomerRegistrationRequest.cs │ ├── CustomerRegistrationResult.cs │ ├── CustomerRegistrationService.cs │ ├── CustomerReportService.cs │ ├── CustomerSearchQuery.cs │ ├── CustomerService.cs │ ├── Events │ │ ├── CustomerAnonymizedEvent.cs │ │ ├── CustomerExportedEvent.cs │ │ ├── CustomerLogedInEvent.cs │ │ └── CustomerRegisteredEvent.cs │ ├── GdprTool.cs │ ├── ICookieManager.cs │ ├── ICustomerContentService.cs │ ├── ICustomerRegistrationService.cs │ ├── ICustomerReportService.cs │ ├── ICustomerService.cs │ ├── IGdprTool.cs │ ├── Importer │ │ └── CustomerImporter.cs │ ├── PasswordChangeResult.cs │ ├── Rules │ │ ├── ITargetGroupService.cs │ │ ├── TargetGroupEvaluatorTask.cs │ │ ├── TargetGroupFilterDescriptor.cs │ │ └── TargetGroupService.cs │ └── Tasks │ │ └── DeleteGuestsTask.cs │ ├── DataExchange │ ├── Csv │ │ ├── CsvConfiguration.cs │ │ ├── CsvConfigurationConverter.cs │ │ ├── CsvDataReader.cs │ │ └── CsvWriter.cs │ ├── Excel │ │ └── ExcelDataReader.cs │ ├── Export │ │ ├── DataExportResult.cs │ │ ├── DataExportTask.cs │ │ ├── DataExporter.cs │ │ ├── Deployment │ │ │ ├── DataDeploymentResult.cs │ │ │ ├── EmailFilePublisher.cs │ │ │ ├── FileSystemFilePublisher.cs │ │ │ ├── FtpFilePublisher.cs │ │ │ ├── HttpFilePublisher.cs │ │ │ ├── IFilePublisher.cs │ │ │ └── PublicFolderPublisher.cs │ │ ├── DynamicEntityHelper.cs │ │ ├── Events │ │ │ └── RowExportingEvent.cs │ │ ├── ExportConfigurationInfo.cs │ │ ├── ExportDataSegmenter.cs │ │ ├── ExportExecuteContext.cs │ │ ├── ExportExtensions.cs │ │ ├── ExportFeaturesAttribute.cs │ │ ├── ExportFileStream.cs │ │ ├── ExportProfileService.cs │ │ ├── ExportProviderBase.cs │ │ ├── ExportXmlHelper.cs │ │ ├── IDataExporter.cs │ │ ├── IExportProfileService.cs │ │ ├── IExportProvider.cs │ │ ├── Internal │ │ │ ├── CategoryExportContext.cs │ │ │ ├── CustomerExportContext.cs │ │ │ ├── DataExporterContext.cs │ │ │ ├── DynamicEntity.cs │ │ │ ├── ManufacturerExportContext.cs │ │ │ └── OrderExportContext.cs │ │ └── ProductExportContext.cs │ ├── ISyncMappingService.cs │ ├── Import │ │ ├── ColumnMapping │ │ │ ├── ColumnMap.cs │ │ │ └── ColumnMapConverter.cs │ │ ├── DataImportTask.cs │ │ ├── DataImporter.cs │ │ ├── DataTable │ │ │ ├── IDataTable.cs │ │ │ └── LightweightDataTable.cs │ │ ├── EntityImporterBase.cs │ │ ├── Events │ │ │ ├── ImportBatchExecutedEvent.cs │ │ │ ├── ImportExecutedEvent.cs │ │ │ └── ImportExecutingEvent.cs │ │ ├── IDataImporter.cs │ │ ├── IEntityImporter.cs │ │ ├── IImportProfileService.cs │ │ ├── ImportDataSegmenter.cs │ │ ├── ImportExecuteContext.cs │ │ ├── ImportExtensions.cs │ │ ├── ImportExtraData.cs │ │ ├── ImportFile.cs │ │ ├── ImportMessage.cs │ │ ├── ImportProfileService.cs │ │ ├── ImportResult.cs │ │ ├── ImportRow.cs │ │ └── Internal │ │ │ └── DataImporterContext.cs │ └── SyncMappingService.cs │ ├── Directory │ ├── CountryService.cs │ ├── CurrencyExtensions.cs │ ├── CurrencyService.cs │ ├── DeliveryTimeService.cs │ ├── EcbExchangeRateProvider.cs │ ├── GeoCountryLookup.cs │ ├── ICountryService.cs │ ├── ICurrencyService.cs │ ├── IDeliveryTimeService.cs │ ├── IExchangeRateProvider.cs │ ├── IGeoCountryLookup.cs │ ├── IMeasureService.cs │ ├── IQuantityUnitService.cs │ ├── IStateProvinceService.cs │ ├── MeasureService.cs │ ├── QuantityUnitService.cs │ ├── StateProvinceService.cs │ └── UpdateExchangeRateTask.cs │ ├── Discounts │ ├── DiscountExtentions.cs │ ├── DiscountService.cs │ └── IDiscountService.cs │ ├── Events │ ├── ConsumerRegistry.cs │ ├── ConsumerResolver.cs │ ├── DefaultMessageBus.cs │ ├── EventPublisher.cs │ ├── IMessageBroker.cs │ └── IMessageBus.cs │ ├── Forums │ ├── ForumExtensions.cs │ ├── ForumMessageFactoryExtensions.cs │ ├── ForumService.cs │ └── IForumService.cs │ ├── Helpers │ ├── DateTimeHelper.cs │ ├── DateTimeSettings.cs │ └── IDateTimeHelper.cs │ ├── Hooks │ ├── AclEntityHook.cs │ ├── AuditableHook.cs │ ├── FixProductMainPictureHook.cs │ ├── LocalizedEntityHook.cs │ ├── LocalizedEntityRelationHook.cs │ ├── ProductVariantAttributeHook.cs │ ├── ProductVariantAttributeValueHook.cs │ ├── SearchQueryAliasHook.cs │ ├── SettingSaveHook.cs │ ├── SlugSupportedHook.cs │ ├── SoftDeletableHook.cs │ ├── StoreMappingEntityHook.cs │ ├── StoreSaveHook.cs │ └── UpdateCustomerFullNameHook.cs │ ├── ICommonServices.cs │ ├── IScopedService.cs │ ├── Localization │ ├── ILanguageService.cs │ ├── ILocalizationService.cs │ ├── ILocalizedEntityService.cs │ ├── LanguageService.cs │ ├── LocalizationExtensions.cs │ ├── LocalizationService.cs │ ├── LocalizedEntityHelper.cs │ ├── LocalizedEntityService.cs │ ├── LocalizedUrlHelper.cs │ └── LocalizedValue.cs │ ├── Logging │ ├── CustomerActivityService.cs │ ├── DbLogService.cs │ ├── DeleteLogsTask.cs │ └── ILogService.cs │ ├── Media │ ├── Album │ │ ├── AlbumInfo.cs │ │ ├── AlbumRegistry.cs │ │ ├── FolderService.cs │ │ ├── IAlbumProvider.cs │ │ ├── IAlbumRegistry.cs │ │ ├── IFolderService.cs │ │ ├── MediaFolderInfo.cs │ │ ├── MediaFolderNode.cs │ │ └── SystemAlbumProvider.cs │ ├── DownloadService.cs │ ├── Events.cs │ ├── Extensions │ │ ├── IFolderServiceExtensions.cs │ │ ├── IMediaServiceExtensions.cs │ │ ├── IMediaTrackerExtensions.cs │ │ └── MediaFileExtensions.cs │ ├── Handlers │ │ ├── IMediaHandler.cs │ │ ├── ImageHandler.cs │ │ ├── ImageHandlerBase.cs │ │ └── MediaHandlerContext.cs │ ├── IDownloadService.cs │ ├── IMediaService.cs │ ├── IMediaUrlGenerator.cs │ ├── Imaging │ │ ├── BitDepth.cs │ │ ├── CachedImage.cs │ │ ├── DefaultImageProcessor.cs │ │ ├── IImage.cs │ │ ├── IImageCache.cs │ │ ├── IImageFactory.cs │ │ ├── IImageFormat.cs │ │ ├── IImageInfo.cs │ │ ├── IImageProcessor.cs │ │ ├── IImageTransformer.cs │ │ ├── ImageCache.cs │ │ ├── ImageSharpImageProcessor.cs │ │ ├── ImageWrapper.cs │ │ ├── Impl │ │ │ ├── IPImage.cs │ │ │ ├── IPImageFactory.cs │ │ │ ├── IPImageFormat.cs │ │ │ └── IPImageTransformer.cs │ │ ├── ProcessImageException.cs │ │ ├── ProcessImageQuery.cs │ │ ├── ProcessImageResult.cs │ │ ├── ResizeOptions.cs │ │ └── UnsupportedImageFormat.cs │ ├── Legacy │ │ ├── IPictureService.cs │ │ └── PictureService.cs │ ├── MediaExceptionFactory.cs │ ├── MediaFileInfo.cs │ ├── MediaFileSystem.cs │ ├── MediaHelper.cs │ ├── MediaModule.cs │ ├── MediaPathData.cs │ ├── MediaService.Folder.cs │ ├── MediaService.cs │ ├── MediaServiceFileSystemAdapter.cs │ ├── MediaTypes │ │ ├── IMediaTypeResolver.cs │ │ ├── MediaType.cs │ │ └── MediaTypeResolver.cs │ ├── MediaUrlGenerator.cs │ ├── Migration │ │ ├── MediaMigrator.cs │ │ ├── MediaMigrator3.cs │ │ └── SeedingDbMigrationConsumer.cs │ ├── Search │ │ ├── FileCountResult.cs │ │ ├── IMediaSearcher.cs │ │ ├── MediaSearchQuery.cs │ │ ├── MediaSearchResult.cs │ │ └── MediaSearcher.cs │ ├── Storage │ │ ├── DatabaseMediaStorageProvider.cs │ │ ├── FileSystemMediaStorageProvider.cs │ │ ├── IMediaMover.cs │ │ ├── IMediaStorageProvider.cs │ │ ├── ISupportsMediaMoving.cs │ │ ├── MediaMover.cs │ │ ├── MediaMoverContext.cs │ │ └── MediaStorageItem.cs │ ├── Tracking │ │ ├── IMediaTrackDetector.cs │ │ ├── IMediaTracker.cs │ │ ├── MediaTracker.cs │ │ ├── MediaTrackerHook.cs │ │ └── TrackedMediaPropertyTable.cs │ └── TransientMediaClearTask.cs │ ├── Messages │ ├── CampaignService.cs │ ├── CreateAttachmentsConsumer.cs │ ├── EmailAccountService.cs │ ├── Events.cs │ ├── ICampaignService.cs │ ├── IEmailAccountService.cs │ ├── IMessageFactory.cs │ ├── IMessageModelProvider.cs │ ├── IMessageTemplateService.cs │ ├── IModelPart.cs │ ├── INewsLetterSubscriptionService.cs │ ├── IQueuedEmailService.cs │ ├── Importer │ │ └── NewsLetterSubscriptionImporter.cs │ ├── MessageContext.cs │ ├── MessageFactory.cs │ ├── MessageModelProvider.OrderParts.cs │ ├── MessageModelProvider.Utils.cs │ ├── MessageModelProvider.cs │ ├── MessageTemplateService.cs │ ├── NewsLetterSubscriptionService.cs │ ├── NewsletterSubscriber.cs │ ├── QueuedEmailService.cs │ ├── QueuedMessagesClearTask.cs │ ├── QueuedMessagesSendTask.cs │ └── TemplateModel.cs │ ├── News │ ├── INewsService.cs │ ├── NewsMessageFactoryExtensions.cs │ └── NewsService.cs │ ├── Orders │ ├── AddToCartContext.cs │ ├── AppliedGiftCard.cs │ ├── AutoUpdateOrderItemContext.cs │ ├── CheckoutAttributeExtensions.cs │ ├── CheckoutAttributeFormatter.cs │ ├── CheckoutAttributeParser.cs │ ├── CheckoutAttributeService.cs │ ├── CheckoutState.cs │ ├── EventPublisherExtensions.cs │ ├── GiftCardService.cs │ ├── ICheckoutAttributeFormatter.cs │ ├── ICheckoutAttributeParser.cs │ ├── ICheckoutAttributeService.cs │ ├── IGiftCardService.cs │ ├── IOrderProcessingService.cs │ ├── IOrderReportService.cs │ ├── IOrderService.cs │ ├── IOrderTotalCalculationService.cs │ ├── IShoppingCartService.cs │ ├── OrderExtensions.cs │ ├── OrderMessageFactoryExtensions.cs │ ├── OrderProcessingService.cs │ ├── OrderReportService.cs │ ├── OrderService.cs │ ├── OrderTotalCalculationService.cs │ ├── PlaceOrderResult.cs │ ├── ShoppingCartExtensions.cs │ ├── ShoppingCartService.cs │ ├── ShoppingCartTotal.cs │ └── ValidatingCartEventConsumer.cs │ ├── Payments │ ├── CancelRecurringPaymentRequest.cs │ ├── CancelRecurringPaymentResult.cs │ ├── CapturePaymentHook.cs │ ├── CapturePaymentRequest.cs │ ├── CapturePaymentResult.cs │ ├── IPaymentMethod.cs │ ├── IPaymentMethodFilter.cs │ ├── IPaymentService.cs │ ├── PaymentExtentions.cs │ ├── PaymentMethodBase.cs │ ├── PaymentMethodType.cs │ ├── PaymentPluginBase.cs │ ├── PaymentService.cs │ ├── PostProcessPaymentRequest.cs │ ├── PreProcessPaymentResult.cs │ ├── ProcessPaymentRequest.cs │ ├── ProcessPaymentResult.cs │ ├── ProcessPaymentResultBase.cs │ ├── RecurringPaymentType.cs │ ├── RefundPaymentRequest.cs │ ├── RefundPaymentResult.cs │ ├── VoidPaymentRequest.cs │ └── VoidPaymentResult.cs │ ├── Pdf │ ├── Content │ │ ├── IPdfContent.cs │ │ ├── PdfHtmlContent.cs │ │ └── PdfUrlContent.cs │ ├── IPdfConverter.cs │ ├── Options │ │ ├── IPdfOptions.cs │ │ ├── PdfHeaderFooterOptions.cs │ │ ├── PdfPageOptions.cs │ │ └── PdfTocOptions.cs │ ├── PdfConvertSettings.cs │ ├── PdfPageMargins.cs │ ├── PdfPagePrientation.cs │ ├── PdfPageSize.cs │ └── WkHtmlToPdfConverter.cs │ ├── Polls │ ├── IPollService.cs │ └── PollService.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Rules │ └── DefaultRuleOptionsProvider.cs │ ├── ScopedServiceBase.cs │ ├── Search │ ├── Catalog │ │ ├── CatalogSearchEvents.cs │ │ ├── CatalogSearchQuery.cs │ │ ├── CatalogSearchResult.cs │ │ ├── CatalogSearchService.cs │ │ ├── ICatalogSearchService.cs │ │ ├── LinqCatalogSearchService.cs │ │ └── Modelling │ │ │ ├── CatalogSearchQueryAliasMapper.cs │ │ │ ├── CatalogSearchQueryFactory.cs │ │ │ ├── CatalogSearchQueryModelBinder.cs │ │ │ ├── ICatalogSearchQueryAliasMapper.cs │ │ │ └── ICatalogSearchQueryFactory.cs │ ├── Extensions │ │ ├── FacetUrlHelper.cs │ │ ├── FacetUtility.cs │ │ └── UrlHelperExtensions.cs │ ├── Forum │ │ ├── ForumSearchEvents.cs │ │ ├── ForumSearchQuery.cs │ │ ├── ForumSearchResult.cs │ │ ├── ForumSearchService.cs │ │ ├── IForumSearchService.cs │ │ ├── LinqForumSearchService.cs │ │ └── Modelling │ │ │ ├── ForumSearchQueryAliasMapper.cs │ │ │ ├── ForumSearchQueryFactory.cs │ │ │ ├── ForumSearchQueryModelBinder.cs │ │ │ ├── IForumSearchQueryAliasMapper.cs │ │ │ └── IForumSearchQueryFactory.cs │ ├── Rendering │ │ ├── FacetTemplateProvider.cs │ │ ├── IFacetTemplateProvider.cs │ │ └── IFacetTemplateSelector.cs │ ├── SearchQueryFactoryBase.cs │ └── SearchServiceBase.cs │ ├── Security │ ├── AclService.cs │ ├── EncryptionService.cs │ ├── IAclService.cs │ ├── IEncryptionService.cs │ ├── InstallPermissionsStarter.cs │ ├── PermissionService.cs │ └── StandardPermissionProvider.cs │ ├── Seo │ ├── IUrlRecordService.cs │ ├── IXmlSitemapGenerator.cs │ ├── IXmlSitemapPublisher.cs │ ├── NamedEntity.cs │ ├── SeoExtensions.cs │ ├── Tasks │ │ └── RebuildXmlSitemapTask.cs │ ├── UrlRecordService.cs │ ├── XmlSitemapBuildContext.cs │ ├── XmlSitemapGenerator.cs │ ├── XmlSitemapNode.cs │ └── XmlSitemapPartition.cs │ ├── ServiceCacheBuster.cs │ ├── Shipping │ ├── GetShippingOptionRequest.cs │ ├── GetShippingOptionResponse.cs │ ├── IShipmentService.cs │ ├── IShippingRateComputationMethod.cs │ ├── IShippingService.cs │ ├── ShipmentService.cs │ ├── ShippingExtentions.cs │ ├── ShippingRateComputationMethodType.cs │ ├── ShippingService.cs │ └── Tracking │ │ ├── GeneralShipmentTracker.cs │ │ ├── IShipmentTracker.cs │ │ └── ShipmentStatusEvent.cs │ ├── SmartStore.Services.csproj │ ├── Stores │ ├── IStoreMappingService.cs │ ├── IStoreService.cs │ ├── StoreMappingService.cs │ └── StoreService.cs │ ├── Tasks │ ├── CronExpression.cs │ ├── IScheduleTaskService.cs │ ├── ITask.cs │ ├── ITaskExecutor.cs │ ├── ITaskScheduler.cs │ ├── ScheduleTaskService.cs │ ├── TaskExecutionContext.cs │ ├── TaskExecutor.cs │ ├── TaskExtensions.cs │ ├── TaskScheduler.cs │ └── TaskSchedulerStarter.cs │ ├── Tax │ ├── CalculateTaxRequest.cs │ ├── CalculateTaxResult.cs │ ├── FreeTaxProvider.cs │ ├── ITaxCategoryService.cs │ ├── ITaxProvider.cs │ ├── ITaxService.cs │ ├── TaxCategoryService.cs │ └── TaxService.cs │ ├── Themes │ ├── IThemeVariablesService.cs │ ├── ThemeValidationException.cs │ └── ThemeVariablesService.cs │ ├── Topics │ ├── ITopicService.cs │ └── TopicService.cs │ ├── Web References │ └── EuropeCheckVatService │ │ ├── Reference.cs │ │ ├── Reference.map │ │ ├── checkVatService.wsdl │ │ └── matchCode.datasource │ ├── app.config │ └── packages.config ├── Plugins ├── SmartStore.AmazonPay │ ├── AmazonPaySettings.cs │ ├── Content │ │ ├── SmartStore.AmazonPay.css │ │ ├── branding.png │ │ ├── icon.png │ │ └── images │ │ │ └── favicon.png │ ├── Controllers │ │ ├── AmazonPayCheckoutController.cs │ │ ├── AmazonPayController.cs │ │ ├── AmazonPayControllerBase.cs │ │ └── AmazonPayShoppingCartController.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Events │ │ └── EventConsumer.cs │ ├── Filters │ │ └── AmazonPayCheckoutFilter.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── AmazonPayViewModel.cs │ │ └── ConfigurationModel.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── Scripts │ │ └── jquery.deserialize.js │ ├── Services │ │ ├── AmazonAuthenticationParameters.cs │ │ ├── AmazonPayEnums.cs │ │ ├── AmazonPayService.cs │ │ ├── AmazonPayServiceHelper.cs │ │ ├── AmazonPayUtilities.cs │ │ ├── IAmazonPayService.cs │ │ └── Internal │ │ │ ├── AmazonPayData.cs │ │ │ ├── AmazonPayExtensions.cs │ │ │ └── AmazonPayPrice.cs │ ├── SmartStore.AmazonPay.csproj │ ├── Tasks │ │ └── DataPollingTask.cs │ ├── Views │ │ ├── AmazonPay │ │ │ ├── AuthenticationPublicInfo.cshtml │ │ │ └── Configure.cshtml │ │ ├── AmazonPayCheckout │ │ │ ├── PaymentMethod.cshtml │ │ │ └── ShippingAddress.cshtml │ │ ├── AmazonPayShoppingCart │ │ │ ├── MiniShoppingCart.cshtml │ │ │ ├── OrderReviewData.cshtml │ │ │ ├── ScriptingReadWidgets.cshtml │ │ │ └── ShoppingCart.cshtml │ │ ├── Shared │ │ │ └── ScriptingLoginButton.cshtml │ │ └── Web.config │ ├── Widgets │ │ └── AmazonPayWidget.cs │ ├── changelog.md │ ├── packages.config │ └── web.config ├── SmartStore.Clickatell │ ├── AdminMenu.cs │ ├── ClickatellSettings.cs │ ├── ClickatellSmsProvider.cs │ ├── Content │ │ ├── branding.png │ │ └── icon.png │ ├── Controllers │ │ └── SmsClickatellController.cs │ ├── Description.txt │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ └── SmsClickatellModel.cs │ ├── OrderPlacedEventConsumer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── SmartStore.Clickatell.csproj │ ├── Views │ │ ├── SmsClickatell │ │ │ └── Configure.cshtml │ │ └── Web.config │ ├── packages.config │ └── web.config ├── SmartStore.DevTools │ ├── AdminMenu.cs │ ├── Blocks │ │ └── SampleBlock.cs │ ├── Controllers │ │ ├── DevToolsController.cs │ │ └── MyCheckoutController.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── DevToolsPlugin.cs │ ├── Events │ │ └── CustomTab.cs │ ├── Examples │ │ └── OutputCacheInvalidationObserver.cs │ ├── Filters │ │ ├── MachineNameFilter.cs │ │ ├── ProfilerFilter.cs │ │ ├── Samples │ │ │ ├── SampleActionFilter.cs │ │ │ ├── SampleCheckoutFilter.cs │ │ │ ├── SampleProductDetailActionFilter.cs │ │ │ └── SampleResultFilter.cs │ │ └── WidgetZoneFilter.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── BackendExtensionModel.cs │ │ └── ConfigurationModel.cs │ ├── ProfilerHttpModule.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── Security │ │ └── DevToolsPermissionProvider.cs │ ├── Services │ │ ├── CustomFacetTemplateSelector.cs │ │ └── MiniProfilerChronometer.cs │ ├── Settings │ │ └── ProfilerSettings.cs │ ├── SmartStore.DevTools.csproj │ ├── Starter.cs │ ├── Views │ │ ├── DevTools │ │ │ ├── BackendExtension.cshtml │ │ │ ├── Configure.cshtml │ │ │ ├── MachineName.cshtml │ │ │ ├── MiniProfiler.cshtml │ │ │ ├── MyCustomFacetTemplate.cshtml │ │ │ ├── ProductEditTab.cshtml │ │ │ └── WidgetZone.cshtml │ │ ├── MyCheckout │ │ │ └── MyBillingAddress.cshtml │ │ ├── Story │ │ │ └── BlockTemplates │ │ │ │ └── Sample │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Public.cshtml │ │ └── Web.config │ ├── Web.config │ └── packages.config ├── SmartStore.FacebookAuth │ ├── Content │ │ └── icon.png │ ├── Controllers │ │ └── ExternalAuthFacebookController.cs │ ├── Core │ │ ├── FacebookOAuth2Client.cs │ │ ├── FacebookProviderAuthorizer.cs │ │ ├── IOAuthProviderFacebookAuthorizer.cs │ │ └── OAuthAuthenticationParameters.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── FacebookExternalAuthMethod.cs │ ├── FacebookExternalAuthSettings.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── LoginModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── SmartStore.FacebookAuth.csproj │ ├── Views │ │ ├── ExternalAuthFacebook │ │ │ ├── Configure.cshtml │ │ │ └── PublicInfo.cshtml │ │ └── Web.config │ ├── packages.config │ └── web.config ├── SmartStore.GoogleAnalytics │ ├── Content │ │ └── icon.png │ ├── Controllers │ │ └── WidgetsGoogleAnalyticsController.cs │ ├── Description.txt │ ├── GoogleAnalyticPlugin.cs │ ├── GoogleAnalyticsSettings.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ └── ConfigurationModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── Services │ │ └── GoogleAnalyticsScriptHelper.cs │ ├── SmartStore.GoogleAnalytics.csproj │ ├── Views │ │ ├── Web.config │ │ └── WidgetsGoogleAnalytics │ │ │ └── Configure.cshtml │ ├── packages.config │ └── web.config ├── SmartStore.GoogleMerchantCenter │ ├── AdminMenu.cs │ ├── Content │ │ ├── branding.png │ │ └── icon.png │ ├── Controllers │ │ └── FeedGoogleMerchantCenterController.cs │ ├── Data │ │ ├── GoogleProductObjectContext.cs │ │ ├── GoogleProductRecordMap.cs │ │ └── Migrations │ │ │ ├── 201403112356126_Initial.Designer.cs │ │ │ ├── 201403112356126_Initial.cs │ │ │ ├── 201403112356126_Initial.resx │ │ │ ├── 201408020941244_IsTouched.Designer.cs │ │ │ ├── 201408020941244_IsTouched.cs │ │ │ ├── 201408020941244_IsTouched.resx │ │ │ ├── 201504211854125_IsActive.Designer.cs │ │ │ ├── 201504211854125_IsActive.cs │ │ │ ├── 201504211854125_IsActive.resx │ │ │ ├── 201601061649324_IsBundle.Designer.cs │ │ │ ├── 201601061649324_IsBundle.cs │ │ │ ├── 201601061649324_IsBundle.resx │ │ │ ├── 201705250945238_Indexes.Designer.cs │ │ │ ├── 201705250945238_Indexes.cs │ │ │ ├── 201705250945238_Indexes.resx │ │ │ └── Configuration.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Domain │ │ └── GoogleProductRecord.cs │ ├── Events.cs │ ├── Extensions │ │ └── MiscExtensions.cs │ ├── Files │ │ ├── taxonomy.de-DE.txt │ │ └── taxonomy.en-US.txt │ ├── GoogleMerchantCenterFeedPlugin.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── FeedGoogleMerchantCenterModel.cs │ │ └── ProfileConfigurationModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ └── GmcXmlExportProvider.cs │ ├── RouteProvider.cs │ ├── Services │ │ ├── GoogleFeedService.cs │ │ └── IGoogleFeedService.cs │ ├── SmartStore.GoogleMerchantCenter.csproj │ ├── Views │ │ ├── FeedGoogleMerchantCenter │ │ │ ├── Configure.cshtml │ │ │ ├── ProductEditTab.cshtml │ │ │ └── ProfileConfiguration.cshtml │ │ └── Web.config │ ├── changelog.md │ ├── packages.config │ └── web.config ├── SmartStore.OfflinePayment │ ├── Content │ │ └── icon-Payments.CashOnDelivery.png │ ├── Controllers │ │ └── OfflinePaymentController.cs │ ├── Description.txt │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ConfigurationModel.cs │ │ └── PaymentInfoModel.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── CashOnDeliveryProvider.cs │ │ ├── DirectDebitProvider.cs │ │ ├── InvoiceProvider.cs │ │ ├── ManualProvider.cs │ │ ├── OfflinePaymentProviderBase.cs │ │ ├── PayInStoreProvider.cs │ │ ├── PrepaymentStoreProvider.cs │ │ └── PurchaseOrderNumberProvider.cs │ ├── RouteProvider.cs │ ├── Settings │ │ └── OfflinePaymentSettings.cs │ ├── SmartStore.OfflinePayment.csproj │ ├── Validators │ │ └── ManualPaymentInfoValidator.cs │ ├── Views │ │ ├── OfflinePayment │ │ │ ├── DirectDebitPaymentInfo.cshtml │ │ │ ├── GenericConfigure.cshtml │ │ │ ├── GenericPaymentInfo.cshtml │ │ │ ├── ManualConfigure.cshtml │ │ │ ├── ManualPaymentInfo.cshtml │ │ │ └── PurchaseOrderNumberPaymentInfo.cshtml │ │ └── Web.config │ ├── changelog.md │ ├── packages.config │ └── web.config ├── SmartStore.PayPal │ ├── Content │ │ ├── branding.png │ │ ├── checkout-button-de.png │ │ ├── checkout-button-default.png │ │ ├── checkout-button-en.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── instalments-sm.png │ │ ├── instalments.png │ │ └── smartstore.paypal.css │ ├── Controllers │ │ ├── PayPalControllerBase.cs │ │ ├── PayPalDirectController.cs │ │ ├── PayPalExpressController.cs │ │ ├── PayPalInstalmentsController.cs │ │ ├── PayPalPlusController.cs │ │ ├── PayPalRestApiControllerBase.cs │ │ └── PayPalStandardController.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Events │ │ └── InstalmentsMessageZoneEventConsumer.cs │ ├── Extensions │ │ └── MiscExtensions.cs │ ├── Filters │ │ ├── PayPalExpressCheckoutFilter.cs │ │ ├── PayPalExpressWidgetZoneFilter.cs │ │ ├── PayPalFilter.cs │ │ ├── PayPalInstalmentsCheckoutFilter.cs │ │ ├── PayPalPlusCheckoutFilter.cs │ │ └── PayPalPlusWidgetZoneFilter.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ApiConfigurationModels.cs │ │ ├── Congfiguration │ │ │ ├── PayPalInstalmentsConfigModel.cs │ │ │ └── PayPalPlusConfigurationModel.cs │ │ ├── PayPalDirectPaymentInfoModel.cs │ │ ├── PayPalExpressPaymentInfoModel.cs │ │ ├── PayPalPlusCheckoutModel.cs │ │ └── PayPalStandardConfigurationModel.cs │ ├── Plugin.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Providers │ │ ├── PayPalDirectProvider.cs │ │ ├── PayPalExpressProvider.cs │ │ ├── PayPalInstalmentsProvider.cs │ │ ├── PayPalPlusProvider.cs │ │ ├── PayPalProviderBase.cs │ │ ├── PayPalRestApiProviderBase.cs │ │ └── PayPalStandardProvider.cs │ ├── RouteProvider.cs │ ├── Services │ │ ├── IPayPalService.cs │ │ ├── PayPalEnums.cs │ │ ├── PayPalPaymentFilter.cs │ │ ├── PayPalService.Credit.cs │ │ └── PayPalService.cs │ ├── Settings │ │ ├── PayPalInstalmentsSettings.cs │ │ └── PayPalSettings.cs │ ├── SmartStore.PayPal.csproj │ ├── Views │ │ ├── PayPalDirect │ │ │ ├── Configure.cshtml │ │ │ └── PaymentInfo.cshtml │ │ ├── PayPalExpress │ │ │ ├── Configure.cshtml │ │ │ ├── MiniShoppingCart.cshtml │ │ │ └── PaymentInfo.cshtml │ │ ├── PayPalInstalments │ │ │ ├── Configure.cshtml │ │ │ ├── OrderDetails.Print.cshtml │ │ │ ├── OrderDetails.cshtml │ │ │ ├── OrderDetails.liquid │ │ │ ├── OrderSummaryTotals.cshtml │ │ │ ├── PaymentInfo.cshtml │ │ │ ├── Promotion.Content.cshtml │ │ │ ├── Promotion.cshtml │ │ │ └── PromotionPopup.cshtml │ │ ├── PayPalPlus │ │ │ ├── Configure.cshtml │ │ │ ├── PaymentWall.cshtml │ │ │ └── PaymentWallScripting.cshtml │ │ ├── PayPalStandard │ │ │ ├── Configure.cshtml │ │ │ └── PaymentInfo.cshtml │ │ ├── Shared │ │ │ └── Partials │ │ │ │ └── ApiConfiguration.cshtml │ │ └── Web.config │ ├── Web References │ │ └── PayPalSvc │ │ │ ├── AddressVerifyResponseType1.datasource │ │ │ ├── BAUpdateResponseType1.datasource │ │ │ ├── BMButtonSearchResponseType1.datasource │ │ │ ├── BMCreateButtonResponseType1.datasource │ │ │ ├── BMGetButtonDetailsResponseType1.datasource │ │ │ ├── BMGetInventoryResponseType1.datasource │ │ │ ├── BMManageButtonStatusResponseType1.datasource │ │ │ ├── BMSetInventoryResponseType1.datasource │ │ │ ├── BMUpdateButtonResponseType1.datasource │ │ │ ├── BillOutstandingAmountResponseType1.datasource │ │ │ ├── BillUserResponseType1.datasource │ │ │ ├── CancelRecoupResponseType1.datasource │ │ │ ├── CompleteRecoupResponseType1.datasource │ │ │ ├── CoreComponentTypes.xsd │ │ │ ├── CreateBillingAgreementResponseType1.datasource │ │ │ ├── CreateMobilePaymentResponseType1.datasource │ │ │ ├── CreateRecurringPaymentsProfileResponseType1.datasource │ │ │ ├── DoAuthorizationResponseType1.datasource │ │ │ ├── DoCancelResponseType1.datasource │ │ │ ├── DoCaptureResponseType1.datasource │ │ │ ├── DoDirectPaymentResponseType1.datasource │ │ │ ├── DoExpressCheckoutPaymentResponseType1.datasource │ │ │ ├── DoMobileCheckoutPaymentResponseType1.datasource │ │ │ ├── DoNonReferencedCreditResponseType1.datasource │ │ │ ├── DoReauthorizationResponseType1.datasource │ │ │ ├── DoReferenceTransactionResponseType1.datasource │ │ │ ├── DoUATPAuthorizationResponseType1.datasource │ │ │ ├── DoUATPExpressCheckoutPaymentResponseType1.datasource │ │ │ ├── DoVoidResponseType1.datasource │ │ │ ├── EnhancedDataTypes.xsd │ │ │ ├── EnterBoardingResponseType1.datasource │ │ │ ├── ExecuteCheckoutOperationsResponseType1.datasource │ │ │ ├── ExternalRememberMeOptOutResponseType1.datasource │ │ │ ├── GetAccessPermissionDetailsResponseType1.datasource │ │ │ ├── GetAuthDetailsResponseType1.datasource │ │ │ ├── GetBalanceResponseType1.datasource │ │ │ ├── GetBillingAgreementCustomerDetailsResponseType1.datasource │ │ │ ├── GetBoardingDetailsResponseType1.datasource │ │ │ ├── GetExpressCheckoutDetailsResponseType1.datasource │ │ │ ├── GetIncentiveEvaluationResponseType1.datasource │ │ │ ├── GetMobileStatusResponseType1.datasource │ │ │ ├── GetPalDetailsResponseType1.datasource │ │ │ ├── GetRecurringPaymentsProfileDetailsResponseType1.datasource │ │ │ ├── GetTransactionDetailsResponseType1.datasource │ │ │ ├── InitiateRecoupResponseType1.datasource │ │ │ ├── ManagePendingTransactionStatusResponseType1.datasource │ │ │ ├── ManageRecurringPaymentsProfileStatusResponseType1.datasource │ │ │ ├── MassPayResponseType1.datasource │ │ │ ├── PayPalSvc.wsdl │ │ │ ├── Reference.cs │ │ │ ├── Reference.map │ │ │ ├── RefundTransactionResponseType1.datasource │ │ │ ├── ReverseTransactionResponseType1.datasource │ │ │ ├── SetAccessPermissionsResponseType1.datasource │ │ │ ├── SetAuthFlowParamResponseType1.datasource │ │ │ ├── SetCustomerBillingAgreementResponseType1.datasource │ │ │ ├── SetExpressCheckoutResponseType1.datasource │ │ │ ├── SetMobileCheckoutResponseType1.datasource │ │ │ ├── TransactionSearchResponseType1.datasource │ │ │ ├── UpdateAccessPermissionsResponseType1.datasource │ │ │ ├── UpdateAuthorizationResponseType1.datasource │ │ │ ├── UpdateRecurringPaymentsProfileResponseType1.datasource │ │ │ └── eBLBaseComponents.xsd │ ├── changelog.md │ ├── packages.config │ └── web.config ├── SmartStore.Shipping │ ├── Controllers │ │ ├── ByTotalController.cs │ │ └── FixedRateController.cs │ ├── Data │ │ ├── ByTotalObjectContext.cs │ │ ├── ByTotalRecordMap.cs │ │ └── Migrations │ │ │ ├── 201403072202413_Initial.Designer.cs │ │ │ ├── 201403072202413_Initial.cs │ │ │ ├── 201403072202413_Initial.resx │ │ │ └── Configuration.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Domain │ │ └── ShippingByTotalRecord.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ByTotalListModel.cs │ │ ├── ByTotalModel.cs │ │ └── FixedRateModel.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── ByTotalProvider.cs │ │ └── FixedRateProvider.cs │ ├── RouteProvider.cs │ ├── Services │ │ ├── IShippingByTotalService.cs │ │ └── ShippingByTotalService.cs │ ├── Settings │ │ └── ShippingByTotalSettings.cs │ ├── SmartStore.Shipping.csproj │ ├── Views │ │ ├── ByTotal │ │ │ └── Configure.cshtml │ │ ├── FixedRate │ │ │ └── Configure.cshtml │ │ └── Web.config │ ├── packages.config │ └── web.config ├── SmartStore.ShippingByWeight │ ├── ByWeightShippingComputationMethod.cs │ ├── Content │ │ └── icon.png │ ├── Controllers │ │ └── ShippingByWeightController.cs │ ├── Data │ │ ├── Migrations │ │ │ ├── 201403080200108_Initial.Designer.cs │ │ │ ├── 201403080200108_Initial.cs │ │ │ ├── 201403080200108_Initial.resx │ │ │ ├── 201406041606037_SmallQuantitySurcharge.Designer.cs │ │ │ ├── 201406041606037_SmallQuantitySurcharge.cs │ │ │ ├── 201406041606037_SmallQuantitySurcharge.resx │ │ │ ├── 201506290747117_ZipCode.Designer.cs │ │ │ ├── 201506290747117_ZipCode.cs │ │ │ ├── 201506290747117_ZipCode.resx │ │ │ └── Configuration.cs │ │ ├── ShippingByWeightObjectContext.cs │ │ └── ShippingByWeightRecordMap.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Domain │ │ └── ShippingByWeightRecord.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ShippingByWeightListModel.cs │ │ └── ShippingByWeightModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── Services │ │ ├── IShippingByWeightService.cs │ │ └── ShippingByWeightService.cs │ ├── ShippingByWeightSettings.cs │ ├── SmartStore.ShippingByWeight.csproj │ ├── Views │ │ ├── ShippingByWeight │ │ │ └── Configure.cshtml │ │ └── Web.config │ ├── packages.config │ └── web.config ├── SmartStore.Tax │ ├── Controllers │ │ ├── TaxByRegionController.cs │ │ └── TaxFixedRateController.cs │ ├── Data │ │ ├── Migrations │ │ │ ├── 201403112350417_Initial.Designer.cs │ │ │ ├── 201403112350417_Initial.cs │ │ │ ├── 201403112350417_Initial.resx │ │ │ └── Configuration.cs │ │ ├── TaxRateMap.cs │ │ └── TaxRateObjectContext.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Domain │ │ └── TaxRate.cs │ ├── Localization │ │ ├── resources.de-de.xml │ │ └── resources.en-us.xml │ ├── Models │ │ ├── ByRegionTaxRateListModel.cs │ │ ├── ByRegionTaxRateModel.cs │ │ └── FixedTaxRateModel.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── ByRegionTaxProvider.cs │ │ └── FixedRateTaxProvider.cs │ ├── RouteProvider.cs │ ├── Services │ │ ├── Extensions.cs │ │ ├── ITaxRateService.cs │ │ └── TaxRateService.cs │ ├── SmartStore.Tax.csproj │ ├── Views │ │ ├── TaxByRegion │ │ │ └── Configure.cshtml │ │ ├── TaxFixedRate │ │ │ └── Configure.cshtml │ │ └── Web.config │ ├── packages.config │ └── web.config └── SmartStore.WebApi │ ├── Content │ └── icon.png │ ├── Controllers │ ├── Api │ │ ├── HomeController.cs │ │ ├── PaymentsController.cs │ │ └── UploadsController.cs │ ├── OData │ │ ├── AddressesController.cs │ │ ├── BlogCommentsController.cs │ │ ├── BlogPostsController.cs │ │ ├── CategoriesController.cs │ │ ├── CountriesController.cs │ │ ├── CurrenciesController.cs │ │ ├── CustomerRoleMappingsController.cs │ │ ├── CustomerRolesController.cs │ │ ├── CustomersController.cs │ │ ├── DeliveryTimesController.cs │ │ ├── DiscountsController.cs │ │ ├── DownloadsController.cs │ │ ├── GenericAttributesController.cs │ │ ├── LanguagesController.cs │ │ ├── LocalizedPropertiesController.cs │ │ ├── ManufacturersController.cs │ │ ├── MeasureDimensionsController.cs │ │ ├── MeasureWeightsController.cs │ │ ├── MediaFilesController.cs │ │ ├── MediaFoldersController.cs │ │ ├── NewsLetterSubscriptionsController.cs │ │ ├── OrderItemsController.cs │ │ ├── OrderNotesController.cs │ │ ├── OrdersController.cs │ │ ├── PaymentMethodsController.cs │ │ ├── ProductAttributeOptionsController.cs │ │ ├── ProductAttributeOptionsSetsController.cs │ │ ├── ProductAttributesController.cs │ │ ├── ProductBundleItemsController.cs │ │ ├── ProductCategoriesController.cs │ │ ├── ProductManufacturersController.cs │ │ ├── ProductPicturesController.cs │ │ ├── ProductSpecificationAttributesController.cs │ │ ├── ProductVariantAttributeCombinationsController.cs │ │ ├── ProductVariantAttributeValuesController.cs │ │ ├── ProductVariantAttributesController.cs │ │ ├── ProductsController.cs │ │ ├── QuantityUnitsController.cs │ │ ├── RelatedProductsController.cs │ │ ├── ReturnRequestsController.cs │ │ ├── RewardPointsHistoryController.cs │ │ ├── SettingsController.cs │ │ ├── ShipmentItemsController.cs │ │ ├── ShipmentsController.cs │ │ ├── ShippingMethodsController.cs │ │ ├── SpecificationAttributeOptionsController.cs │ │ ├── SpecificationAttributesController.cs │ │ ├── StateProvincesController.cs │ │ ├── StoreMappingsController.cs │ │ ├── StoresController.cs │ │ ├── SyncMappingsController.cs │ │ ├── TaxCategoriesController.cs │ │ ├── TierPricesController.cs │ │ └── UrlRecordsController.cs │ └── WebApiController.cs │ ├── DependencyRegistrar.cs │ ├── Description.txt │ ├── Extensions │ └── MiscExtensions.cs │ ├── Filters │ └── IEEE754CompatibleAttribute.cs │ ├── Localization │ ├── resources.de-de.xml │ └── resources.en-us.xml │ ├── Models │ ├── Api │ │ ├── UploadFileBase.cs │ │ ├── UploadImage.cs │ │ └── UploadImportFile.cs │ ├── OData │ │ ├── ManageAttributeType.cs │ │ ├── Media │ │ │ ├── CheckUniquenessResult.cs │ │ │ ├── FileItemInfo.cs │ │ │ ├── FolderNodeInfo.cs │ │ │ ├── MediaCountResult.cs │ │ │ ├── MediaFileOperationResult.cs │ │ │ ├── MediaFolderDeleteResult.cs │ │ │ └── MediaFolderOperationResult.cs │ │ ├── OrderInfo.cs │ │ ├── OrderItemInfo.cs │ │ └── SimpleRange.cs │ ├── WebApiConfigModel.cs │ └── WebApiUserModel.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RouteProvider.cs │ ├── Scripts │ ├── CryptoJs │ │ ├── components │ │ │ ├── core-min.js │ │ │ ├── enc-base64-min.js │ │ │ └── enc-utf16-min.js │ │ └── rollups │ │ │ ├── hmac-md5.js │ │ │ └── hmac-sha256.js │ ├── smwapi-consumer.js │ └── swagger-auth.js │ ├── Security │ └── WebApiPermissionProvider.cs │ ├── Services │ ├── CustomRoutingConvention.cs │ ├── IWebApiPluginService.cs │ ├── Swagger │ │ ├── SwaggerDefaultValueFilter.cs │ │ ├── SwaggerOdataDocumentFilter.cs │ │ └── SwaggerSchemaFilter.cs │ ├── WebApiCatalogSearchQueryModelBinder.cs │ ├── WebApiPdfHelper.cs │ └── WebApiPluginService.cs │ ├── SmartStore.WebApi.csproj │ ├── Views │ ├── Web.config │ └── WebApi │ │ └── Configure.cshtml │ ├── WebApiConfigurationProvider.cs │ ├── WebApiPlugin.cs │ ├── packages.config │ └── web.config ├── Presentation ├── SmartStore.Web.Framework │ ├── Bundling │ │ ├── BundlePublisher.cs │ │ ├── IBundleProvider.cs │ │ └── IBundlePublisher.cs │ ├── Controllers │ │ ├── AdminControllerBase.cs │ │ ├── ContollerExtensions.cs │ │ ├── ManageController.cs │ │ ├── PaymentControllerBase.cs │ │ ├── PluginControllerBase.cs │ │ ├── PublicControllerBase.cs │ │ ├── SmartController.cs │ │ └── ViewNotFoundException.cs │ ├── DependencyRegistrar.cs │ ├── Events │ │ └── TabStripCreated.cs │ ├── Extensions │ │ ├── ActionResultExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── HtmlExtensions.cs │ │ ├── HtmlPrefixScopeExtensions.cs │ │ ├── HtmlSelectListExtensions.cs │ │ ├── HtmlZoneExtensions.cs │ │ ├── HttpExtensions.cs │ │ ├── HttpSessionStateExtensions.cs │ │ ├── LocalizedValueExtensions.cs │ │ ├── NameValueCollectionExtensions.cs │ │ ├── PostedFileResult.cs │ │ ├── TagBuilderExtensions.cs │ │ ├── TelerikExtensions.cs │ │ └── UrlHelperExtensions.cs │ ├── Filters │ │ ├── CheckAffiliateAttribute.cs │ │ ├── CompressAttribute.cs │ │ ├── CookieConsentFilter.cs │ │ ├── CustomerLastActivityAttribute.cs │ │ ├── FormValueExistsAttribute.cs │ │ ├── FormValueRequiredAttribute.cs │ │ ├── GdprConsentAttribute.cs │ │ ├── HandleExceptionFilter.cs │ │ ├── HandleInstallFilter.cs │ │ ├── JsonNetAttribute.cs │ │ ├── MaxMediaFileSizeAttribute.cs │ │ ├── NotifyAttribute.cs │ │ ├── ParameterBasedOnFormNameAndValueAttribute.cs │ │ ├── ParameterBasedOnFormNameAttribute.cs │ │ ├── PublicStoreAllowNavigationAttribute.cs │ │ ├── ResponseFilterStream.cs │ │ ├── StoreClosedAttribute.cs │ │ ├── StoreIpAddressAttribute.cs │ │ ├── StoreLastVisitedPageAttribute.cs │ │ └── UnitOfWorkAttribute.cs │ ├── FrameworkCacheConsumer.cs │ ├── Localization │ │ ├── ErrorMessageProvider.cs │ │ ├── ILocalizedModel.cs │ │ ├── IText.cs │ │ ├── LanguageSeoCodeAttribute.cs │ │ ├── LocalizedRoute.cs │ │ ├── LocalizedRouteExtensions.cs │ │ ├── SetWorkingCultureAttribute.cs │ │ ├── SmartResourceDisplayName.cs │ │ ├── TelerikLocalizationService.cs │ │ ├── TelerikLocalizationServiceFactory.cs │ │ └── Text.cs │ ├── Modelling │ │ ├── ChoiceListItem.cs │ │ ├── CommaSeparatedModelBinder.cs │ │ ├── DeleteConfirmationModel.cs │ │ ├── IModelAttribute.cs │ │ ├── MediaTemplateModel.cs │ │ ├── ModelBase.cs │ │ ├── ModelBoundEvent.cs │ │ ├── Results │ │ │ ├── CachedFileResult.cs │ │ │ ├── FileResponder.cs │ │ │ ├── FileTransmitter.cs │ │ │ ├── IFileResponse.cs │ │ │ ├── JsonNetResult.cs │ │ │ ├── PermissiveRedirectResult.cs │ │ │ ├── RootActionViewResult.cs │ │ │ ├── RssActionResult.cs │ │ │ └── XmlDownloadResult.cs │ │ ├── SmartMetadataProvider.cs │ │ └── SmartModelBinder.cs │ ├── Pdf │ │ ├── Content │ │ │ ├── PdfPartialViewContent.cs │ │ │ ├── PdfRouteContent.cs │ │ │ └── PdfViewContent.cs │ │ ├── PdfHeaderFooterVariables.cs │ │ ├── PdfReceiptHeaderFooterModel.cs │ │ └── PdfResult.cs │ ├── Plugins │ │ ├── PluginExtensions.cs │ │ ├── PluginMediator.cs │ │ ├── PluginRazorHost.cs │ │ ├── PluginStarter.cs │ │ ├── ProviderManager.cs │ │ └── ProviderModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Routing │ │ ├── GuidConstraint.cs │ │ ├── IRouteProvider.cs │ │ ├── IRoutePublisher.cs │ │ └── RoutePublisher.cs │ ├── Security │ │ ├── AdminAuthorizeAttribute.cs │ │ ├── AdminValidateIpAddressAttribute.cs │ │ ├── Captcha │ │ │ ├── CaptchaSettings.cs │ │ │ ├── HtmlCaptchaExtensions.cs │ │ │ └── ValidateCaptchaAttribute.cs │ │ ├── FilePermissionHelper.cs │ │ ├── Honeypot │ │ │ ├── Honeypot.cs │ │ │ ├── HtmlHoneypotExtensions.cs │ │ │ └── ValidateHoneypotAttribute.cs │ │ ├── SameSiteBrowserDetector.cs │ │ └── SanitizeHtmlAttribute.cs │ ├── Seo │ │ ├── GenericPath.cs │ │ ├── GenericPathRoute.cs │ │ ├── GenericPathRouteExtensions.cs │ │ ├── ISeoModel.cs │ │ ├── RewriteUrlAttribute.cs │ │ └── SslRequirement.cs │ ├── Settings │ │ ├── LoadSettingAttribute.cs │ │ ├── SaveSettingAttribute.cs │ │ ├── StoreDependingSettingData.cs │ │ └── StoreDependingSettingHelper.cs │ ├── SmartDependencyResolver.cs │ ├── SmartStore.Web.Framework.csproj │ ├── SmartUrlRoutingModule.cs │ ├── Templating │ │ ├── Events.cs │ │ └── Liquid │ │ │ ├── Drops │ │ │ ├── DictionaryDrop.cs │ │ │ ├── EnumerableWrapper.cs │ │ │ ├── ObjectDrop.cs │ │ │ ├── SafeDropBase.cs │ │ │ └── TestDrop.cs │ │ │ ├── Filters │ │ │ └── AdditionalFilters.cs │ │ │ ├── LiquidTemplate.cs │ │ │ ├── LiquidTemplateEngine.cs │ │ │ ├── LiquidUtil.cs │ │ │ └── Tags │ │ │ └── Zone.cs │ ├── Theming │ │ ├── AdminThemedAttribute.cs │ │ ├── Assets │ │ │ ├── AssetTranslator.cs │ │ │ ├── AssetTranslorUtil.cs │ │ │ ├── AutoPrefixPostProcessor.cs │ │ │ ├── BundlingVirtualPathProvider.cs │ │ │ ├── CachedAsset.cs │ │ │ ├── DefaultAssetCache.cs │ │ │ ├── IAssetCache.cs │ │ │ ├── ModuleImportsVirtualFile.cs │ │ │ └── SmartStyleBundle.cs │ │ ├── CssHttpHandler.cs │ │ ├── DefaultThemeFileResolver.cs │ │ ├── IFileDependencyProvider.cs │ │ ├── InheritedVirtualThemeFile.cs │ │ ├── LocalizedDisplayMode.cs │ │ ├── SmartVirtualPathProvider.cs │ │ ├── ThemeContext.cs │ │ ├── ThemeHelper.cs │ │ ├── ThemeHtmlExtensions.cs │ │ ├── ThemeVarsRepository.cs │ │ ├── ThemeVarsVirtualFile.cs │ │ ├── ThemeableRazorViewEngine.cs │ │ ├── ThemeableVirtualPathProviderViewEngine.cs │ │ ├── ThemingVirtualPathProvider.cs │ │ ├── TwoLevelViewLocationCache.cs │ │ ├── WebViewPage.cs │ │ └── WebViewPageHelper.cs │ ├── UI │ │ ├── Breadcrumb.cs │ │ ├── BundleBuilder.cs │ │ ├── Choices │ │ │ ├── ChoiceItemModel.cs │ │ │ ├── ChoiceModel.cs │ │ │ └── GenericChoiceModel.cs │ │ ├── Components │ │ │ ├── BoxSpacing.cs │ │ │ ├── Component.cs │ │ │ ├── ComponentBuilder.cs │ │ │ ├── ComponentFactory.cs │ │ │ ├── ComponentRenderer.cs │ │ │ ├── ComponentRendererUtils.cs │ │ │ ├── EntityPicker │ │ │ │ ├── EntityPicker.cs │ │ │ │ └── EntityPickerBuilder.cs │ │ │ ├── Enums.cs │ │ │ ├── FileUploader │ │ │ │ ├── FileUploader.cs │ │ │ │ └── FileUploaderBuilder.cs │ │ │ ├── HtmlHelperExtensions.cs │ │ │ ├── IContentContainer.cs │ │ │ ├── IHtmlAttributesContainer.cs │ │ │ ├── IUiComponent.cs │ │ │ ├── Menu │ │ │ │ ├── AdminMenuProvider.cs │ │ │ │ ├── CatalogMenuProvider.cs │ │ │ │ ├── IMenuProvider.cs │ │ │ │ ├── Menu.cs │ │ │ │ ├── MenuBuilder.cs │ │ │ │ ├── MenuExtensions.cs │ │ │ │ ├── MenuItem.cs │ │ │ │ ├── MenuItemBuilder.cs │ │ │ │ ├── MenuModel.cs │ │ │ │ ├── MenuPublisher.cs │ │ │ │ ├── MenuRenderer.cs │ │ │ │ └── NodePathState.cs │ │ │ ├── NavigatableComponent.cs │ │ │ ├── NavigatableComponentBuilder.cs │ │ │ ├── NavigationItem.cs │ │ │ ├── NavigationItemBuilder.cs │ │ │ ├── Pager │ │ │ │ ├── ForumTopicPagerRenderer.cs │ │ │ │ ├── Pager.cs │ │ │ │ ├── PagerBuilder.cs │ │ │ │ ├── PagerItem.cs │ │ │ │ └── PagerRenderer.cs │ │ │ ├── TabStrip │ │ │ │ ├── Tab.cs │ │ │ │ ├── TabBuilder.cs │ │ │ │ ├── TabFactory.cs │ │ │ │ ├── TabStrip.cs │ │ │ │ ├── TabStripBuilder.cs │ │ │ │ └── TabStripRenderer.cs │ │ │ ├── ViewBasedComponentRenderer.cs │ │ │ └── Window │ │ │ │ ├── Window.cs │ │ │ │ ├── WindowBuilder.cs │ │ │ │ └── WindowRenderer.cs │ │ ├── Extensions │ │ │ ├── DataListExtensions.cs │ │ │ ├── HtmlAttributeExtensions.cs │ │ │ ├── LayoutExtensions.cs │ │ │ ├── NavigatableExtensions.cs │ │ │ ├── RouteValueDictionaryExtensions.cs │ │ │ └── ScaffoldExtensions.cs │ │ ├── HtmlAttribute.cs │ │ ├── INavigatable.cs │ │ ├── IPageAssetsBuilder.cs │ │ ├── IWidgetProvider.cs │ │ ├── IWidgetSelector.cs │ │ ├── Icons │ │ │ ├── IIcon.cs │ │ │ ├── IconDescription.cs │ │ │ └── IconExplorer.cs │ │ ├── Menus │ │ │ ├── DatabaseMenu.cs │ │ │ ├── DatabaseMenuResolver.cs │ │ │ ├── DependencyMenuResolver.cs │ │ │ ├── IMenu.cs │ │ │ ├── IMenuResolver.cs │ │ │ ├── IMenuService.cs │ │ │ ├── MenuBase.cs │ │ │ ├── MenuBuiltEvent.cs │ │ │ ├── MenuFilter.cs │ │ │ ├── MenuInvalidator.cs │ │ │ ├── MenuService.cs │ │ │ └── Providers │ │ │ │ ├── CatalogMenuInvalidator.cs │ │ │ │ ├── CatalogMenuItemProvider.cs │ │ │ │ ├── EntityMenuItemProvider.cs │ │ │ │ ├── IMenuItemProvider.cs │ │ │ │ ├── MenuItemProviderBase.cs │ │ │ │ ├── MenuItemProviderMetadata.cs │ │ │ │ └── RouteMenuItemProvider.cs │ │ ├── PageAssetsBuilder.cs │ │ ├── ResourceLocation.cs │ │ ├── Spacing.cs │ │ ├── WidgetProvider.cs │ │ ├── WidgetRouteInfo.cs │ │ └── WidgetZoneModel.cs │ ├── Validators │ │ ├── FluentValidatorExtensions.cs │ │ ├── SmartBaseValidator.cs │ │ ├── SmartValidatorFactory.cs │ │ └── ValidatorLanguageManager.cs │ ├── WebApi │ │ ├── AutofacWebApiDependencyResolver.cs │ │ ├── AutofacWebApiDependencyScope.cs │ │ ├── Caching │ │ │ ├── WebApiCachingControllingData.cs │ │ │ └── WebApiCachingUserData.cs │ │ ├── Configuration │ │ │ ├── IWebApiConfigurationProvider.cs │ │ │ ├── IWebApiConfigurationPublisher.cs │ │ │ ├── WebApiConfigurationBroadcaster.cs │ │ │ └── WebApiConfigurationPublisher.cs │ │ ├── Extensions │ │ │ ├── ApiControllerExtensions.cs │ │ │ └── HttpRequestMessageExtensions.cs │ │ ├── OData │ │ │ ├── WebApiEntityController.cs │ │ │ └── WebApiQueryableAttribute.cs │ │ ├── Security │ │ │ ├── HmacAuthentication.cs │ │ │ └── WebApiAuthenticateAttribute.cs │ │ ├── WebApiContractResolver.cs │ │ ├── WebApiCore.cs │ │ ├── WebApiSettings.cs │ │ └── WebApiStartupTask.cs │ ├── WebStoreContext.cs │ ├── WebWorkContext.cs │ ├── app.config │ └── packages.config └── SmartStore.Web │ ├── 404.html │ ├── 500.html │ ├── Administration │ ├── Content │ │ ├── TODO.txt │ │ ├── _admin.scss │ │ ├── _dashboard.scss │ │ ├── _rtl.scss │ │ ├── _telerik.scss │ │ ├── _variables.scss │ │ ├── filemanager │ │ │ ├── LICENSE.txt │ │ │ ├── conf.json │ │ │ ├── css │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.css │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ └── main.scss │ │ │ ├── images │ │ │ │ ├── blank.gif │ │ │ │ ├── file-upload.png │ │ │ │ ├── folder-green.png │ │ │ │ ├── folder-opened.png │ │ │ │ ├── folder.png │ │ │ │ ├── loading-dir.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── remove-upload.png │ │ │ │ ├── sprite.png │ │ │ │ ├── stripes-reverse.gif │ │ │ │ ├── stripes.gif │ │ │ │ └── upload-big.png │ │ │ ├── js │ │ │ │ ├── custom.js │ │ │ │ ├── directory.js │ │ │ │ ├── file.js │ │ │ │ ├── filetypes.js │ │ │ │ ├── jquery-2.1.1.min.js │ │ │ │ ├── jquery-dateFormat.min.js │ │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ │ ├── main.js │ │ │ │ └── utils.js │ │ │ ├── lang │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs1.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── tr.js │ │ │ └── third-party.txt │ │ ├── images │ │ │ ├── ajax_loader_small.gif │ │ │ ├── ico-content-negative.png │ │ │ ├── ico-content-o60.png │ │ │ ├── ico-content.png │ │ │ ├── icon-plugin-admin.png │ │ │ ├── icon-plugin-analytics.png │ │ │ ├── icon-plugin-api.png │ │ │ ├── icon-plugin-cms.png │ │ │ ├── icon-plugin-currencyexchange.png │ │ │ ├── icon-plugin-data.png │ │ │ ├── icon-plugin-default.png │ │ │ ├── icon-plugin-design.png │ │ │ ├── icon-plugin-developer.png │ │ │ ├── icon-plugin-discountrequirement.png │ │ │ ├── icon-plugin-globalization.png │ │ │ ├── icon-plugin-import.png │ │ │ ├── icon-plugin-marketing.png │ │ │ ├── icon-plugin-media.png │ │ │ ├── icon-plugin-mobile.png │ │ │ ├── icon-plugin-payment.png │ │ │ ├── icon-plugin-sales.png │ │ │ ├── icon-plugin-security.png │ │ │ ├── icon-plugin-seo.png │ │ │ ├── icon-plugin-shipping.png │ │ │ ├── icon-plugin-social.png │ │ │ ├── icon-plugin-tax.png │ │ │ ├── loading.gif │ │ │ ├── smartstore-icon.svg │ │ │ └── smartstore.svg │ │ ├── telerik │ │ │ ├── css │ │ │ │ └── 2012.2.607 │ │ │ │ │ ├── telerik.common.css │ │ │ │ │ └── telerik.rtl.css │ │ │ ├── img │ │ │ │ ├── editor.png │ │ │ │ ├── gradient.png │ │ │ │ ├── imagebrowser.png │ │ │ │ ├── loading.gif │ │ │ │ ├── slider-h.gif │ │ │ │ ├── slider-v.gif │ │ │ │ ├── sprite-vertical.png │ │ │ │ └── sprite.png │ │ │ └── js │ │ │ │ ├── 2012.2.607 │ │ │ │ ├── telerik.calendar.min.js │ │ │ │ ├── telerik.common.min.js │ │ │ │ ├── telerik.datepicker.min.js │ │ │ │ ├── telerik.datetimepicker.min.js │ │ │ │ ├── telerik.draganddrop.min.js │ │ │ │ ├── telerik.grid.editing.min.js │ │ │ │ ├── telerik.grid.filtering.min.js │ │ │ │ ├── telerik.grid.grouping.min.js │ │ │ │ ├── telerik.grid.min.js │ │ │ │ ├── telerik.grid.reordering.min.js │ │ │ │ ├── telerik.grid.resizing.min.js │ │ │ │ ├── telerik.textbox.min.js │ │ │ │ └── telerik.treeview.min.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ └── jquery.validate.js │ │ ├── theme-rtl.scss │ │ └── theme.scss │ ├── Controllers │ │ ├── ActivityLogController.cs │ │ ├── AdminModelHelper.cs │ │ ├── AffiliateController.cs │ │ ├── BlogController.cs │ │ ├── CampaignController.cs │ │ ├── CategoryController.cs │ │ ├── CheckoutAttributeController.cs │ │ ├── CommonController.cs │ │ ├── CountryController.cs │ │ ├── CurrencyController.cs │ │ ├── CustomerController.cs │ │ ├── CustomerRoleController.cs │ │ ├── DeliveryTimeController.cs │ │ ├── DiscountController.cs │ │ ├── DownloadController.cs │ │ ├── EmailAccountController.cs │ │ ├── ExportController.cs │ │ ├── ExternalAuthenticationController.cs │ │ ├── ForumController.cs │ │ ├── GiftCardController.cs │ │ ├── HomeController.cs │ │ ├── ImportController.cs │ │ ├── LanguageController.cs │ │ ├── LogController.cs │ │ ├── ManufacturerController.cs │ │ ├── MeasureController.cs │ │ ├── MediaController.cs │ │ ├── MenuController.cs │ │ ├── MessageTemplateController.cs │ │ ├── NewsController.cs │ │ ├── NewsLetterSubscriptionController.cs │ │ ├── OnlineCustomerController.cs │ │ ├── OrderController.cs │ │ ├── PackagingController.cs │ │ ├── PaymentController.cs │ │ ├── PluginController.cs │ │ ├── PollController.cs │ │ ├── ProductAttributeController.cs │ │ ├── ProductController.cs │ │ ├── ProductReviewController.cs │ │ ├── QuantityUnitController.cs │ │ ├── QueuedEmailController.cs │ │ ├── RecurringPaymentController.cs │ │ ├── ReturnRequestController.cs │ │ ├── RoxyFileManagerController.cs │ │ ├── RuleController.cs │ │ ├── ScheduleTaskController.cs │ │ ├── SecurityController.cs │ │ ├── SettingController.cs │ │ ├── ShippingController.cs │ │ ├── ShoppingCartController.cs │ │ ├── SpecificationAttributeController.cs │ │ ├── StoreController.cs │ │ ├── TaxController.cs │ │ ├── ThemeController.cs │ │ ├── TopicController.cs │ │ ├── UrlRecordController.cs │ │ └── WidgetController.cs │ ├── Extensions │ │ └── HtmlHelperExtensions.cs │ ├── Infrastructure │ │ ├── AdminMenu.cs │ │ ├── AdminStartupTask.cs │ │ ├── DependencyRegistrar.cs │ │ ├── PreviewModeFilter.cs │ │ ├── RouteProvider.cs │ │ └── SettingsMenu.cs │ ├── MappingExtensions.cs │ ├── Models │ │ ├── Affiliates │ │ │ └── AffiliateModel.cs │ │ ├── Blogs │ │ │ ├── BlogCommentModel.cs │ │ │ ├── BlogListModel.cs │ │ │ └── BlogPostModel.cs │ │ ├── Catalog │ │ │ ├── BulkEditListModel.cs │ │ │ ├── BulkEditProductModel.cs │ │ │ ├── CategoryListModel.cs │ │ │ ├── CategoryModel.cs │ │ │ ├── CategoryTreeModel.cs │ │ │ ├── CopyProductModel.cs │ │ │ ├── ManufacturerListModel.cs │ │ │ ├── ManufacturerModel.cs │ │ │ ├── ProductAttributeModel.cs │ │ │ ├── ProductAttributeOptionModel.cs │ │ │ ├── ProductAttributeOptionsSetModel.cs │ │ │ ├── ProductBundleItemModel.cs │ │ │ ├── ProductListModel.cs │ │ │ ├── ProductModel.cs │ │ │ ├── ProductReviewListModel.cs │ │ │ ├── ProductReviewModel.cs │ │ │ ├── ProductSpecificationAttributeModel.cs │ │ │ ├── ProductTagModel.cs │ │ │ ├── ProductVariantAttributeCombinationModel.cs │ │ │ ├── SpecificationAttributeModel.cs │ │ │ └── SpecificationAttributeOptionModel.cs │ │ ├── Cms │ │ │ └── WidgetModel.cs │ │ ├── Common │ │ │ ├── AddressModel.cs │ │ │ ├── CheckUpdateResult.cs │ │ │ ├── FeedItemModel.cs │ │ │ ├── GenericAttributeModel.cs │ │ │ ├── LanguageSelectorModel.cs │ │ │ ├── MaintenanceModel.cs │ │ │ ├── SystemInfoModel.cs │ │ │ └── SystemWarningModel.cs │ │ ├── Customers │ │ │ ├── BestCustomersReportLineModel.cs │ │ │ ├── CustomerAddressModel.cs │ │ │ ├── CustomerListModel.cs │ │ │ ├── CustomerModel.cs │ │ │ ├── CustomerReportsModel.cs │ │ │ ├── CustomerRoleMappingModel.cs │ │ │ ├── CustomerRoleModel.cs │ │ │ ├── OnlineCustomerModel.cs │ │ │ ├── RegisteredCustomerReportLineModel.cs │ │ │ ├── RegisteredCustomersDashboardReportModel.cs │ │ │ ├── TopCustomerReportLineModel.cs │ │ │ ├── TopCustomersDashboardReportModel.cs │ │ │ └── TopCustomersReportModel.cs │ │ ├── Dashboard │ │ │ └── DashboardChartReportModel.cs │ │ ├── DataExchange │ │ │ ├── CsvConfigurationModel.cs │ │ │ ├── ExportDeploymentModel.cs │ │ │ ├── ExportFilterModel.cs │ │ │ ├── ExportPreviewModel.cs │ │ │ ├── ExportProfileModel.cs │ │ │ ├── ExportProjectionModel.cs │ │ │ ├── ImportProfileListModel.cs │ │ │ ├── ImportProfileModel.cs │ │ │ └── ProfileInfoForProviderModel.cs │ │ ├── Directory │ │ │ ├── CountryListModel.cs │ │ │ ├── CountryModel.cs │ │ │ ├── CurrencyModel.cs │ │ │ ├── DeliveryTimeModel.cs │ │ │ ├── MeasureDimensionModel.cs │ │ │ ├── MeasureWeightModel.cs │ │ │ ├── QuantityUnitModel.cs │ │ │ └── StateProvinceModel.cs │ │ ├── Discounts │ │ │ └── DiscountModel.cs │ │ ├── ExternalAuthentication │ │ │ └── AuthenticationMethodModel.cs │ │ ├── Forums │ │ │ ├── ForumGroupModel.cs │ │ │ └── ForumModel.cs │ │ ├── Localization │ │ │ ├── AvailableLanguageModel.cs │ │ │ ├── CheckAvailableResourcesResult.cs │ │ │ ├── LanguageModel.cs │ │ │ └── LanguageResourceModel.cs │ │ ├── Logging │ │ │ ├── ActivityLogModel.cs │ │ │ ├── ActivityLogSearchModel.cs │ │ │ ├── ActivityLogTypeModel.cs │ │ │ ├── LogListModel.cs │ │ │ └── LogModel.cs │ │ ├── Menus │ │ │ ├── MenuItemRecordModel.cs │ │ │ ├── MenuRecordListModel.cs │ │ │ └── MenuRecordModel.cs │ │ ├── Messages │ │ │ ├── CampaignModel.cs │ │ │ ├── EmailAccountModel.cs │ │ │ ├── MessageTemplateListModel.cs │ │ │ ├── MessageTemplateModel.cs │ │ │ ├── MessageTemplatePreviewModel.cs │ │ │ ├── NewsLetterSubscriptionListModel.cs │ │ │ ├── NewsLetterSubscriptionModel.cs │ │ │ ├── QueuedEmailListModel.cs │ │ │ └── QueuedEmailModel.cs │ │ ├── News │ │ │ ├── NewsCommentModel.cs │ │ │ ├── NewsItemListModel.cs │ │ │ └── NewsItemModel.cs │ │ ├── Orders │ │ │ ├── AutoUpdateOrderItemModel.cs │ │ │ ├── BestsellersDashboardReportModel.cs │ │ │ ├── BestsellersReportLineModel.cs │ │ │ ├── BestsellersReportModel.cs │ │ │ ├── CheckoutAttributeListModel.cs │ │ │ ├── CheckoutAttributeModel.cs │ │ │ ├── CheckoutAttributeValueModel.cs │ │ │ ├── GiftCardListModel.cs │ │ │ ├── GiftCardModel.cs │ │ │ ├── LatestOrdersDashboardReportModel.cs │ │ │ ├── NeverSoldReportLineModel.cs │ │ │ ├── NeverSoldReportModel.cs │ │ │ ├── OrderAddressModel.cs │ │ │ ├── OrderAverageReportLineSummaryModel.cs │ │ │ ├── OrderListModel.cs │ │ │ ├── OrderModel.cs │ │ │ ├── OrdersIncompleteDashboardReportModel.cs │ │ │ ├── RecurringPaymentModel.cs │ │ │ ├── ReturnRequestListModel.cs │ │ │ ├── ReturnRequestModel.cs │ │ │ ├── ShipmentListModel.cs │ │ │ └── ShipmentModel.cs │ │ ├── Payments │ │ │ ├── PaymentMethodEditModel.cs │ │ │ └── PaymentMethodModel.cs │ │ ├── Plugins │ │ │ ├── LicenseLabelModel.cs │ │ │ ├── LicensePluginModel.cs │ │ │ ├── LocalPluginsModel.cs │ │ │ ├── PluginModel.cs │ │ │ └── ProviderModelList.cs │ │ ├── Polls │ │ │ ├── PollAnswerModel.cs │ │ │ ├── PollModel.cs │ │ │ └── PollVotingRecordModel.cs │ │ ├── Rules │ │ │ ├── RuleEditItem.cs │ │ │ ├── RuleSelectItem.cs │ │ │ ├── RuleSetListModel.cs │ │ │ └── RuleSetModel.cs │ │ ├── Settings │ │ │ ├── BlogSettingsModel.cs │ │ │ ├── CatalogSettingsModel.cs │ │ │ ├── CustomerUserSettingsModel.cs │ │ │ ├── DataExchangeSettingsModel.cs │ │ │ ├── ForumSearchSettingsModel.cs │ │ │ ├── ForumSettingsModel.cs │ │ │ ├── GeneralCommonSettingsModel.cs │ │ │ ├── MediaSettingsModel.cs │ │ │ ├── NewsSettingsModel.cs │ │ │ ├── OrderSettingsModel.cs │ │ │ ├── PaymentSettingsModel.cs │ │ │ ├── RewardPointsSettingsModel.cs │ │ │ ├── SearchSettingsModel.cs │ │ │ ├── SettingModel.cs │ │ │ ├── ShippingSettingsModel.cs │ │ │ ├── ShoppingCartSettingsModel.cs │ │ │ ├── StoreScopeConfigurationModel.cs │ │ │ └── TaxSettingsModel.cs │ │ ├── Shipping │ │ │ ├── ShippingMethodModel.cs │ │ │ └── ShippingRateComputationMethodModel.cs │ │ ├── ShoppingCart │ │ │ ├── ShoppingCartItemModel.cs │ │ │ └── ShoppingCartModel.cs │ │ ├── Stores │ │ │ ├── StoreDashboardReportModel.cs │ │ │ └── StoreModel.cs │ │ ├── Tasks │ │ │ ├── ScheduleTaskHistoryModel.cs │ │ │ └── ScheduleTaskModel.cs │ │ ├── Tax │ │ │ ├── TaxCategoryModel.cs │ │ │ └── TaxProviderModel.cs │ │ ├── Themes │ │ │ ├── ConfigureThemeModel.cs │ │ │ ├── ThemeListModel.cs │ │ │ └── ThemeManifestModel.cs │ │ ├── Topics │ │ │ ├── TopicListModel.cs │ │ │ └── TopicModel.cs │ │ └── UrlRecord │ │ │ ├── UrlRecordListModel.cs │ │ │ └── UrlRecordModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── _references.js │ │ ├── admin.common.js │ │ ├── admin.dashboard.js │ │ ├── admin.globalinit.js │ │ ├── admin.media.js │ │ ├── jquery-shims.js │ │ ├── jquery.tmpl.min.js │ │ ├── popper.js.map │ │ ├── popper.min.js.map │ │ ├── smartstore.download.js │ │ ├── smartstore.iconchooser.js │ │ └── smartstore.rules.js │ ├── SmartStore.Admin.csproj │ ├── Views │ │ ├── ActivityLog │ │ │ ├── ListLogs.cshtml │ │ │ └── ListTypes.cshtml │ │ ├── Affiliate │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Blog │ │ │ ├── Comments.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Campaign │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Category │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── Tree.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── CheckoutAttribute │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── ValueCreatePopup.cshtml │ │ │ ├── ValueEditPopup.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ └── _CreateOrUpdateValue.cshtml │ │ ├── Common │ │ │ ├── CheckUpdate.cshtml │ │ │ ├── GenericAttributes.cshtml │ │ │ ├── LanguageSelector.cshtml │ │ │ ├── Maintenance.cshtml │ │ │ ├── SystemInfo.cshtml │ │ │ └── Warnings.cshtml │ │ ├── Country │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── StateCreatePopup.cshtml │ │ │ ├── StateEditPopup.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ └── _CreateOrUpdateState.cshtml │ │ ├── Currency │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Customer │ │ │ ├── AddressCreate.cshtml │ │ │ ├── AddressEdit.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── RegisteredCustomersDashboardReport.cshtml │ │ │ ├── ReportRegisteredCustomers.cshtml │ │ │ ├── Reports.cshtml │ │ │ ├── TopCustomersDashboardReport.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ └── _CreateOrUpdateAddress.cshtml │ │ ├── CustomerRole │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── DeliveryTime │ │ │ ├── CreateDeliveryTimePopup.cshtml │ │ │ ├── EditDeliveryTimePopup.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Discount │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── EmailAccount │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Export │ │ │ ├── Create.cshtml │ │ │ ├── CreateDeployment.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditDeployment.cshtml │ │ │ ├── InfoProfile.cshtml │ │ │ ├── List.cshtml │ │ │ ├── Preview.cshtml │ │ │ ├── ProfileFileCount.cshtml │ │ │ ├── ProfileFileDetails.cshtml │ │ │ ├── _CreateOrUpdate.Deployment.cshtml │ │ │ ├── _ProfileList.cshtml │ │ │ ├── _Tab.Deployment.cshtml │ │ │ ├── _Tab.Filter.cshtml │ │ │ └── _Tab.Projection.cshtml │ │ ├── ExternalAuthentication │ │ │ └── Providers.cshtml │ │ ├── Forum │ │ │ ├── CreateForum.cshtml │ │ │ ├── CreateForumGroup.cshtml │ │ │ ├── EditForum.cshtml │ │ │ ├── EditForumGroup.cshtml │ │ │ ├── List.cshtml │ │ │ ├── _CreateOrUpdateForum.cshtml │ │ │ └── _CreateOrUpdateForumGroup.cshtml │ │ ├── GiftCard │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── MarketplaceFeed.cshtml │ │ │ └── UaTester.cshtml │ │ ├── Import │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── ProfileImportResult.cshtml │ │ │ ├── _ColumnMappings.cshtml │ │ │ └── _Update.cshtml │ │ ├── Language │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── Partials │ │ │ │ └── AvailableLanguages.cshtml │ │ │ ├── Resources.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Log │ │ │ ├── List.cshtml │ │ │ └── View.cshtml │ │ ├── Manufacturer │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Measure │ │ │ ├── CreateDimensionPopup.cshtml │ │ │ ├── CreateWeightPopup.cshtml │ │ │ ├── Dimensions.cshtml │ │ │ ├── EditDimensionPopup.cshtml │ │ │ ├── EditWeightPopup.cshtml │ │ │ ├── EditorTemplates │ │ │ │ └── Decimal8.cshtml │ │ │ ├── Weights.cshtml │ │ │ ├── _CreateOrUpdateDimension.cshtml │ │ │ └── _CreateOrUpdateWeight.cshtml │ │ ├── Media │ │ │ └── FileConflictResolutionDialog.cshtml │ │ ├── Menu │ │ │ ├── Create.cshtml │ │ │ ├── CreateItem.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditItem.cshtml │ │ │ ├── EditorTemplates │ │ │ │ ├── MenuItem.Catalog.cshtml │ │ │ │ ├── MenuItem.Entity.cshtml │ │ │ │ └── MenuItem.Route.cshtml │ │ │ ├── ItemList.cshtml │ │ │ ├── List.cshtml │ │ │ ├── _CreateOrUpdate.Item.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── MessageTemplate │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── Preview.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── News │ │ │ ├── Comments.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── NewsLetterSubscription │ │ │ └── List.cshtml │ │ ├── OnlineCustomer │ │ │ └── List.cshtml │ │ ├── Order │ │ │ ├── AddProductToOrder.cshtml │ │ │ ├── AddProductToOrderDetails.cshtml │ │ │ ├── AddShipment.cshtml │ │ │ ├── AddressEdit.cshtml │ │ │ ├── BestsellersBriefReportByAmount.cshtml │ │ │ ├── BestsellersBriefReportByQuantity.cshtml │ │ │ ├── BestsellersDashboardReport.cshtml │ │ │ ├── BestsellersReport.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── LatestOrdersDashboardReport.cshtml │ │ │ ├── List.cshtml │ │ │ ├── NeverSoldReport.cshtml │ │ │ ├── OrderAverageReport.cshtml │ │ │ ├── OrdersDashboardReport.cshtml │ │ │ ├── OrdersIncompleteDashboardReport.cshtml │ │ │ ├── PartiallyRefundOrderPopup.cshtml │ │ │ ├── Partials │ │ │ │ └── OrderGrid.cshtml │ │ │ ├── ShipmentDetails.Print.cshtml │ │ │ ├── ShipmentDetails.cshtml │ │ │ ├── ShipmentList.cshtml │ │ │ ├── UploadLicenseFilePopup.cshtml │ │ │ ├── _AutoUpdateOrderItem.cshtml │ │ │ ├── _Edit.BillingAndShipment.cshtml │ │ │ ├── _Edit.Info.cshtml │ │ │ ├── _Edit.OrderNotes.cshtml │ │ │ ├── _Edit.Products.cshtml │ │ │ ├── _ProductAddAttributes.cshtml │ │ │ └── _ProductAddGiftCardInfo.cshtml │ │ ├── Packaging │ │ │ └── UploadPackage.cshtml │ │ ├── Payment │ │ │ ├── Edit.cshtml │ │ │ └── Providers.cshtml │ │ ├── Plugin │ │ │ ├── ConfigurePlugin.cshtml │ │ │ ├── ConfigureProvider.cshtml │ │ │ ├── EditProviderPopup.cshtml │ │ │ ├── LicensePlugin.cshtml │ │ │ ├── List.cshtml │ │ │ └── Partials │ │ │ │ └── LicenseLabel.cshtml │ │ ├── Poll │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Product │ │ │ ├── AttributeCombinationCreatePopup.cshtml │ │ │ ├── AttributeCombinationEditPopup.cshtml │ │ │ ├── BulkEdit.cshtml │ │ │ ├── BundleItemEditPopup.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── EditAttributeValues.cshtml │ │ │ ├── EditProductTag.cshtml │ │ │ ├── EditorTemplates │ │ │ │ ├── AttributeControlType.cshtml │ │ │ │ ├── ProductAttribute.cshtml │ │ │ │ ├── ProductCategory.cshtml │ │ │ │ ├── ProductManufacturer.cshtml │ │ │ │ ├── TierPriceCalculationMethod.cshtml │ │ │ │ ├── TierPriceCustomer.cshtml │ │ │ │ └── TierPriceStore.cshtml │ │ │ ├── List.cshtml │ │ │ ├── LowStockReport.cshtml │ │ │ ├── ProductAttributeValueCreatePopup.cshtml │ │ │ ├── ProductAttributeValueEditPopup.cshtml │ │ │ ├── ProductTags.cshtml │ │ │ ├── _Create.SaveFirst.cshtml │ │ │ ├── _CreateOrUpdate.AssociatedProducts.cshtml │ │ │ ├── _CreateOrUpdate.Attributes.cshtml │ │ │ ├── _CreateOrUpdate.BundleItems.cshtml │ │ │ ├── _CreateOrUpdate.Categories.cshtml │ │ │ ├── _CreateOrUpdate.Downloads.cshtml │ │ │ ├── _CreateOrUpdate.Info.cshtml │ │ │ ├── _CreateOrUpdate.Inventory.cshtml │ │ │ ├── _CreateOrUpdate.Manufacturers.cshtml │ │ │ ├── _CreateOrUpdate.Orders.cshtml │ │ │ ├── _CreateOrUpdate.Pictures.cshtml │ │ │ ├── _CreateOrUpdate.Price.cshtml │ │ │ ├── _CreateOrUpdate.Promotion.cshtml │ │ │ ├── _CreateOrUpdate.SEO.cshtml │ │ │ ├── _CreateOrUpdate.SpecificationAttributes.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ ├── _CreateOrUpdateAttributeCombinationPopup.cshtml │ │ │ ├── _CreateOrUpdateProductAttributeValue.cshtml │ │ │ ├── _CreateOrUpdateProductTag.cshtml │ │ │ └── _ProductAttributes.cshtml │ │ ├── ProductAttribute │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── OptionCreatePopup.cshtml │ │ │ ├── OptionEditPopup.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ └── _CreateOrUpdateOption.cshtml │ │ ├── ProductReview │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── QuantityUnit │ │ │ ├── CreateQuantityUnitPopup.cshtml │ │ │ ├── EditQuantityUnitPopup.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── QueuedEmail │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── RecurringPayment │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── ReturnRequest │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── RoxyFileManager │ │ │ └── Index.cshtml │ │ ├── Rule │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── Preview.cshtml │ │ │ ├── ValueTemplates │ │ │ │ ├── Boolean.cshtml │ │ │ │ ├── CartItemQuantity.cshtml │ │ │ │ ├── DateTime.cshtml │ │ │ │ ├── Decimal.cshtml │ │ │ │ ├── Dropdown.cshtml │ │ │ │ ├── Float.cshtml │ │ │ │ ├── Int32.cshtml │ │ │ │ └── TextBox.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ ├── _Rule.Descriptor.cshtml │ │ │ ├── _Rule.Operator.cshtml │ │ │ ├── _Rule.cshtml │ │ │ └── _RuleSet.cshtml │ │ ├── ScheduleTask │ │ │ ├── Edit.cshtml │ │ │ ├── FutureSchedules.cshtml │ │ │ ├── List.cshtml │ │ │ ├── MinimalTask.cshtml │ │ │ ├── _LastRun.cshtml │ │ │ ├── _MinimalTaskWidget.cshtml │ │ │ └── _NextRun.cshtml │ │ ├── Security │ │ │ └── AccessDenied.cshtml │ │ ├── Setting │ │ │ ├── AllSettings.cshtml │ │ │ ├── Blog.cshtml │ │ │ ├── Catalog.cshtml │ │ │ ├── CookieInfoCreatePopup.cshtml │ │ │ ├── CookieInfoEditPopup.cshtml │ │ │ ├── CustomerUser.cshtml │ │ │ ├── DataExchange.cshtml │ │ │ ├── Forum.cshtml │ │ │ ├── GeneralCommon.cshtml │ │ │ ├── Media.cshtml │ │ │ ├── News.cshtml │ │ │ ├── Order.cshtml │ │ │ ├── Partials │ │ │ │ └── CommonFacet.cshtml │ │ │ ├── Payment.cshtml │ │ │ ├── RewardPoints.cshtml │ │ │ ├── Search.cshtml │ │ │ ├── Shipping.cshtml │ │ │ ├── ShoppingCart.cshtml │ │ │ ├── StoreScopeConfiguration.cshtml │ │ │ ├── Tax.cshtml │ │ │ └── _CreateOrUpdateCookieInfo.cshtml │ │ ├── Shared │ │ │ ├── EditorTemplates │ │ │ │ ├── AccessPermissions.cshtml │ │ │ │ ├── Address.cshtml │ │ │ │ ├── CustomerRoles.cshtml │ │ │ │ ├── DeliveryTimes.cshtml │ │ │ │ ├── Discounts.cshtml │ │ │ │ ├── Download.cshtml │ │ │ │ ├── ModelTree.cshtml │ │ │ │ ├── RuleSets.cshtml │ │ │ │ ├── SelectList.cshtml │ │ │ │ ├── SeoModel.cshtml │ │ │ │ ├── Stores.cshtml │ │ │ │ └── WidgetZone.cshtml │ │ │ ├── Layouts │ │ │ │ ├── _AdminBareLayout.cshtml │ │ │ │ ├── _AdminLayout.cshtml │ │ │ │ ├── _AdminPopupLayout.cshtml │ │ │ │ ├── _AdminRoot.cshtml │ │ │ │ ├── _MinimalLayout.cshtml │ │ │ │ └── _SettingLayout.cshtml │ │ │ ├── Menus │ │ │ │ ├── Admin.cshtml │ │ │ │ └── Settings.cshtml │ │ │ └── Partials │ │ │ │ ├── CsvConfiguration.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── FontAwesomeIcon.cshtml │ │ │ │ ├── Navbar.cshtml │ │ │ │ └── _Providers.cshtml │ │ ├── Shipping │ │ │ ├── CreateMethod.cshtml │ │ │ ├── EditMethod.cshtml │ │ │ ├── Methods.cshtml │ │ │ ├── Providers.cshtml │ │ │ └── _CreateOrUpdateMethod.cshtml │ │ ├── ShoppingCart │ │ │ ├── CurrentCarts.cshtml │ │ │ └── CurrentWishlists.cshtml │ │ ├── SpecificationAttribute │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── OptionCreatePopup.cshtml │ │ │ ├── OptionEditPopup.cshtml │ │ │ ├── _CreateOrUpdate.cshtml │ │ │ └── _CreateOrUpdateOption.cshtml │ │ ├── Store │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── StoreDashboardReport.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Tax │ │ │ ├── Categories.cshtml │ │ │ └── Providers.cshtml │ │ ├── Theme │ │ │ ├── Configure.cshtml │ │ │ ├── List.cshtml │ │ │ └── PreviewTool.cshtml │ │ ├── Topic │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── UrlRecord │ │ │ ├── Edit.cshtml │ │ │ ├── List.cshtml │ │ │ ├── NamesPerEntity.cshtml │ │ │ └── _CreateOrUpdate.cshtml │ │ ├── Web.config │ │ ├── Widget │ │ │ ├── List.cshtml │ │ │ └── Providers.cshtml │ │ └── _ViewStart.cshtml │ ├── Web.config │ ├── favicon.ico │ ├── packages.config │ └── sitemap.config │ ├── App_Data │ ├── AddressFormats.xml │ ├── EmailTemplates │ │ ├── de │ │ │ ├── Blog.BlogComment.xml │ │ │ ├── Customer.BackInStock.xml │ │ │ ├── Customer.EmailValidationMessage.xml │ │ │ ├── Customer.NewOrderNote.xml │ │ │ ├── Customer.NewPM.xml │ │ │ ├── Customer.PasswordRecovery.xml │ │ │ ├── Customer.WelcomeMessage.xml │ │ │ ├── Forums.NewForumPost.xml │ │ │ ├── Forums.NewForumTopic.xml │ │ │ ├── GiftCard.Notification.xml │ │ │ ├── NewCustomer.Notification.xml │ │ │ ├── NewReturnRequest.StoreOwnerNotification.xml │ │ │ ├── NewVATSubmitted.StoreOwnerNotification.xml │ │ │ ├── News.NewsComment.xml │ │ │ ├── NewsLetterSubscription.ActivationMessage.xml │ │ │ ├── NewsLetterSubscription.DeactivationMessage.xml │ │ │ ├── OrderCancelled.CustomerNotification.xml │ │ │ ├── OrderCompleted.CustomerNotification.xml │ │ │ ├── OrderPlaced.CustomerNotification.xml │ │ │ ├── OrderPlaced.StoreOwnerNotification.xml │ │ │ ├── Product.AskQuestion.xml │ │ │ ├── Product.ProductReview.xml │ │ │ ├── QuantityBelow.StoreOwnerNotification.xml │ │ │ ├── RecurringPaymentCancelled.StoreOwnerNotification.xml │ │ │ ├── ReturnRequestStatusChanged.CustomerNotification.xml │ │ │ ├── Service.EmailAFriend.xml │ │ │ ├── ShipmentDelivered.CustomerNotification.xml │ │ │ ├── ShipmentSent.CustomerNotification.xml │ │ │ ├── System.Campaign.xml │ │ │ ├── System.ContactUs.xml │ │ │ ├── System.Generic.xml │ │ │ └── Wishlist.EmailAFriend.xml │ │ └── en │ │ │ ├── Blog.BlogComment.xml │ │ │ ├── Customer.BackInStock.xml │ │ │ ├── Customer.EmailValidationMessage.xml │ │ │ ├── Customer.NewOrderNote.xml │ │ │ ├── Customer.NewPM.xml │ │ │ ├── Customer.PasswordRecovery.xml │ │ │ ├── Customer.WelcomeMessage.xml │ │ │ ├── Forums.NewForumPost.xml │ │ │ ├── Forums.NewForumTopic.xml │ │ │ ├── GiftCard.Notification.xml │ │ │ ├── NewCustomer.Notification.xml │ │ │ ├── NewReturnRequest.StoreOwnerNotification.xml │ │ │ ├── NewVATSubmitted.StoreOwnerNotification.xml │ │ │ ├── News.NewsComment.xml │ │ │ ├── NewsLetterSubscription.ActivationMessage.xml │ │ │ ├── NewsLetterSubscription.DeactivationMessage.xml │ │ │ ├── OrderCancelled.CustomerNotification.xml │ │ │ ├── OrderCompleted.CustomerNotification.xml │ │ │ ├── OrderPlaced.CustomerNotification.xml │ │ │ ├── OrderPlaced.StoreOwnerNotification.xml │ │ │ ├── Product.AskQuestion.xml │ │ │ ├── Product.ProductReview.xml │ │ │ ├── QuantityBelow.StoreOwnerNotification.xml │ │ │ ├── RecurringPaymentCancelled.StoreOwnerNotification.xml │ │ │ ├── ReturnRequestStatusChanged.CustomerNotification.xml │ │ │ ├── Service.EmailAFriend.xml │ │ │ ├── ShipmentDelivered.CustomerNotification.xml │ │ │ ├── ShipmentSent.CustomerNotification.xml │ │ │ ├── System.Campaign.xml │ │ │ ├── System.ContactUs.xml │ │ │ ├── System.Generic.xml │ │ │ └── Wishlist.EmailAFriend.xml │ ├── Geo │ │ ├── COPYRIGHT.txt │ │ ├── LICENSE.txt │ │ └── dbip-country-lite.mmdb │ ├── Localization │ │ ├── App │ │ │ ├── de │ │ │ │ ├── all.smres.xml │ │ │ │ └── head.txt │ │ │ └── en │ │ │ │ ├── all.smres.xml │ │ │ │ └── head.txt │ │ └── Installation │ │ │ ├── installation.de.xml │ │ │ └── installation.en.xml │ ├── Migrations │ │ ├── 1.0.0-1.0.1 │ │ │ ├── migrate-all.sql │ │ │ ├── migrate-core.sql │ │ │ ├── migrate-message-templates.sql │ │ │ └── migrate-resources.sql │ │ ├── 1.0.1-1.2.0 │ │ │ ├── 1-migrate-multistore.sql │ │ │ ├── 2-migrate-core.sql │ │ │ ├── 3-migrate-message-templates.sql │ │ │ ├── ReadMe.txt │ │ │ └── migrate-all.sql │ │ ├── 1.2.0-1.2.1 │ │ │ ├── 1-migrate-resources.sql │ │ │ └── 2-migrate-core.sql │ │ ├── 1.2.1-2.0.0 │ │ │ ├── 1-migrate-resources.sql │ │ │ ├── 2-migrate-core.sql │ │ │ ├── 3-migrate-improved-product-structure-resources.sql │ │ │ ├── 4-migrate-improved-product-structure-core.sql │ │ │ ├── 5-migrate-product-bundle-resources.sql │ │ │ ├── 6-migrate-product-bundle-core.sql │ │ │ ├── 7-migrate-product-linkage-core.sql │ │ │ └── migrate-all.sql │ │ └── IMPORTANT.Readme.txt │ ├── Samples │ │ ├── blog │ │ │ ├── bauhaus-preview.jpg │ │ │ ├── bauhaus.jpg │ │ │ ├── de │ │ │ │ ├── bauhaus.xml │ │ │ │ ├── corvette.xml │ │ │ │ ├── football.xml │ │ │ │ ├── lion.xml │ │ │ │ ├── maldives.xml │ │ │ │ └── mountEverest.xml │ │ │ ├── en │ │ │ │ ├── bauhaus.xml │ │ │ │ ├── corvette.xml │ │ │ │ ├── football.xml │ │ │ │ ├── lion.xml │ │ │ │ ├── maldives.xml │ │ │ │ └── mountEverest.xml │ │ │ ├── football-preview.jpg │ │ │ ├── football.jpg │ │ │ ├── lion-preview.jpg │ │ │ ├── lion.jpg │ │ │ ├── maldives-preview.jpg │ │ │ ├── maldives.jpg │ │ │ ├── mount-everest-preview.jpg │ │ │ ├── mount-everest.jpg │ │ │ └── sportscar.jpg │ │ ├── brand │ │ │ ├── EA_Sports.png │ │ │ ├── Jack_Wolfskin.png │ │ │ ├── MeyAndEdlich.jpg │ │ │ ├── acer.jpg │ │ │ ├── adidas.png │ │ │ ├── android.png │ │ │ ├── apple.png │ │ │ ├── blackberry.png │ │ │ ├── breitling.png │ │ │ ├── canon.png │ │ │ ├── casio.png │ │ │ ├── certina.png │ │ │ ├── dell.png │ │ │ ├── festina.png │ │ │ ├── hp.png │ │ │ ├── htc.png │ │ │ ├── lg.png │ │ │ ├── microsoft-icon.png │ │ │ ├── microsoft.png │ │ │ ├── msi.png │ │ │ ├── nike.png │ │ │ ├── oakley.png │ │ │ ├── panasonic.png │ │ │ ├── puma.jpg │ │ │ ├── ray-ban.jpg │ │ │ ├── samsung.png │ │ │ ├── seiko.png │ │ │ ├── sony.png │ │ │ ├── tissot.png │ │ │ ├── titleist.png │ │ │ ├── trekstor.png │ │ │ ├── ubisoft.png │ │ │ ├── wb.png │ │ │ ├── westerndigital.png │ │ │ └── wilson.png │ │ ├── category │ │ │ ├── 0000930_spiegel-bestseller.png │ │ │ ├── 0000936_kochen-geniesen.jpeg │ │ │ ├── accessories.jpg │ │ │ ├── accessories_apparel.jpg │ │ │ ├── apparel_shoes.jpeg │ │ │ ├── apple.png │ │ │ ├── basketball.png │ │ │ ├── book.jpeg │ │ │ ├── camera_photo.jpeg │ │ │ ├── cellphone.png │ │ │ ├── computers.png │ │ │ ├── desktops.png │ │ │ ├── digitaldownloads.jpg │ │ │ ├── digitalproducts.jpg │ │ │ ├── electronics.jpeg │ │ │ ├── emblem_library.png │ │ │ ├── fashion.jpg │ │ │ ├── furniture.jpg │ │ │ ├── games.jpg │ │ │ ├── gaming.png │ │ │ ├── gaming_accessories.png │ │ │ ├── gift-cards.png │ │ │ ├── giftcards.png │ │ │ ├── glasses.png │ │ │ ├── golf.jpg │ │ │ ├── jackets.jpg │ │ │ ├── leather_jackets.jpg │ │ │ ├── notebooks.png │ │ │ ├── shoes.png │ │ │ ├── soccer.png │ │ │ ├── sofas.jpg │ │ │ ├── sports.jpg │ │ │ ├── sunglasses.jpg │ │ │ ├── tables.jpg │ │ │ ├── tracksuit.png │ │ │ ├── trousers.png │ │ │ └── watches.png │ │ ├── company-logo.png │ │ ├── download │ │ │ ├── Stone_of_the_wise_preview.pdf │ │ │ ├── beethoven-fur-elise.mp3 │ │ │ └── vivaldi-four-seasons-spring.mp3 │ │ ├── news │ │ │ ├── benz-first-modern-car.jpg │ │ │ ├── de │ │ │ │ ├── FirstModernCar.xml │ │ │ │ ├── MountEverest.xml │ │ │ │ ├── Titanic.xml │ │ │ │ └── ZuseZ3.xml │ │ │ ├── en │ │ │ │ ├── FirstModernCar.xml │ │ │ │ ├── MountEverest.xml │ │ │ │ ├── Titanic.xml │ │ │ │ └── ZuseZ3.xml │ │ │ ├── mount-everest-tenzing-hillary.jpg │ │ │ ├── rms-titanic.jpg │ │ │ └── zuse-z3.jpg │ │ └── product │ │ │ ├── 0000932_uberman-der-roman.jpeg │ │ │ ├── 0000935_der-gefangene-des-himmels-roman_300.jpeg │ │ │ ├── 0000942_bildatlas-motorrader-mit-mehr-als-350-brillanten-abbildungen.jpeg │ │ │ ├── 0000943_motorrad-abenteuer-fahrtechnik-fur-reise-enduros.jpeg │ │ │ ├── 0000944_autos-der-superlative-die-starksten-die-ersten-die-schonsten-die-schnellsten.jpeg │ │ │ ├── 0000946_fast-cars-bildkalender-2013_300.jpeg │ │ │ ├── 0000947_das-auto-buch-die-grose-chronik-mit-uber-1200-modellen_300.jpeg │ │ │ ├── 97-ipad-gold.jpg │ │ │ ├── 97-ipad-lightblue.jpg │ │ │ ├── 97-ipad-mint.jpg │ │ │ ├── 97-ipad-purple.jpg │ │ │ ├── 97-ipad-rose.jpg │ │ │ ├── 97-ipad-silver.jpg │ │ │ ├── 97-ipad-spacegray.jpg │ │ │ ├── 97-ipad-turquoise.jpg │ │ │ ├── 97-ipad-yellow.jpg │ │ │ ├── AcerAspireOne_1.jpeg │ │ │ ├── AcerAspireOne_2.jpeg │ │ │ ├── Beethoven.jpg │ │ │ ├── CustomFlakSunglasses.jpg │ │ │ ├── CustomFlakSunglasses_black_white.jpg │ │ │ ├── CustomFlak_matteblack_24kiridium.jpg │ │ │ ├── CustomFlak_matteblack_clear.jpg │ │ │ ├── CustomFlak_matteblack_fireiridium.jpg │ │ │ ├── CustomFlak_matteblack_gray.jpg │ │ │ ├── CustomFlak_matteblack_jadeiridium.jpg │ │ │ ├── CustomFlak_matteblack_positiverediridium.jpg │ │ │ ├── CustomFlak_matteblack_rubyiridium.jpg │ │ │ ├── CustomFlak_matteblack_sapphireiridium.jpg │ │ │ ├── CustomFlak_matteblack_violetiridium.jpg │ │ │ ├── CustomFlak_orangeflare_24kiridium.jpg │ │ │ ├── CustomFlak_orangeflare_clear.jpg │ │ │ ├── CustomFlak_orangeflare_fireiridium.jpg │ │ │ ├── CustomFlak_orangeflare_gray.jpg │ │ │ ├── CustomFlak_orangeflare_jadeiridium.jpg │ │ │ ├── CustomFlak_orangeflare_positiverediridium.jpg │ │ │ ├── CustomFlak_orangeflare_rubyiridium.jpg │ │ │ ├── CustomFlak_orangeflare_sapphireiridium.jpg │ │ │ ├── CustomFlak_orangeflare_violetiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_24kiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_clear.jpg │ │ │ ├── CustomFlak_polishedwhite_fireiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_gray.jpg │ │ │ ├── CustomFlak_polishedwhite_jadeiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_positiverediridium.jpg │ │ │ ├── CustomFlak_polishedwhite_rubyiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_sapphireiridium.jpg │ │ │ ├── CustomFlak_polishedwhite_violetiridium.jpg │ │ │ ├── CustomFlak_redline_24kiridium.jpg │ │ │ ├── CustomFlak_redline_clear.jpg │ │ │ ├── CustomFlak_redline_fireiridium.jpg │ │ │ ├── CustomFlak_redline_gray.jpg │ │ │ ├── CustomFlak_redline_jadeiridium.jpg │ │ │ ├── CustomFlak_redline_positiverediridium.jpg │ │ │ ├── CustomFlak_redline_rubyiridium.jpg │ │ │ ├── CustomFlak_redline_sapphireiridium.jpg │ │ │ ├── CustomFlak_redline_violetiridium.jpg │ │ │ ├── CustomFlak_skyblue_24kiridium.jpg │ │ │ ├── CustomFlak_skyblue_clear.jpg │ │ │ ├── CustomFlak_skyblue_fireiridium.jpg │ │ │ ├── CustomFlak_skyblue_gray.jpg │ │ │ ├── CustomFlak_skyblue_jadeiridium.jpg │ │ │ ├── CustomFlak_skyblue_positiverediridium.jpg │ │ │ ├── CustomFlak_skyblue_rubyiridium.jpg │ │ │ ├── CustomFlak_skyblue_sapphireiridium.jpg │ │ │ ├── CustomFlak_skyblue_violetiridium.jpg │ │ │ ├── OriginalWayfarer_1.jpg │ │ │ ├── OriginalWayfarer_2.jpg │ │ │ ├── OriginalWayfarer_3.jpg │ │ │ ├── OriginalWayfarer_4.jpg │ │ │ ├── OriginalWayfarer_5.jpg │ │ │ ├── OriginalWayfarer_6.jpg │ │ │ ├── RayBanTopBar_1.jpg │ │ │ ├── RayBanTopBar_2.jpg │ │ │ ├── RayBanTopBar_3.jpg │ │ │ ├── SeikoSRPA49K1.jpg │ │ │ ├── aceraspiresl1500.png │ │ │ ├── adidas-tango-pasadena-ball-blue.jpg │ │ │ ├── adidas-tango-pasadena-ball-brown.jpg │ │ │ ├── adidas-tango-pasadena-ball-gray.jpg │ │ │ ├── adidas-tango-pasadena-ball-green.jpg │ │ │ ├── adidas-tango-pasadena-ball-red.jpg │ │ │ ├── adidas-tango-pasadena-ball-white.png │ │ │ ├── adidas-tango-pasadena-ball-yellow.jpg │ │ │ ├── adidas_superstar_schuh_1.png │ │ │ ├── airpods_gold.jpg │ │ │ ├── airpods_lightblue.jpg │ │ │ ├── airpods_mint.jpg │ │ │ ├── airpods_rose.jpg │ │ │ ├── airpods_turquoise.jpg │ │ │ ├── airpods_white.jpg │ │ │ ├── all-court-basketball.png │ │ │ ├── allstar_charcoal.jpg │ │ │ ├── allstar_converse.jpg │ │ │ ├── allstar_hi_charcoal.jpg │ │ │ ├── allstar_hi_maroon.jpg │ │ │ ├── allstar_hi_navy.jpg │ │ │ ├── allstar_hi_purple.jpg │ │ │ ├── allstar_hi_white.jpg │ │ │ ├── allstar_maroon.jpg │ │ │ ├── allstar_navy.jpg │ │ │ ├── allstar_purple.jpg │ │ │ ├── allstar_white.jpg │ │ │ ├── ball_chair_black.jpg │ │ │ ├── ball_chair_white.jpg │ │ │ ├── bestgrillingrecipes.jpg │ │ │ ├── certina_ds_podium_big.png │ │ │ ├── charles_eames_lounge_chair_black.jpg │ │ │ ├── charles_eames_lounge_chair_white.jpg │ │ │ ├── clark_premium_jeans.jpg │ │ │ ├── cookingfortwo.jpg │ │ │ ├── corbusier_lc6_table_1.jpg │ │ │ ├── corbusier_lc6_table_2.jpg │ │ │ ├── corbusier_lc6_table_3.jpg │ │ │ ├── corbusier_lc6_table_4.jpg │ │ │ ├── dellinspiron23.png │ │ │ ├── dualshock4.jpg │ │ │ ├── evolution-high-school-game-basketball.jpg │ │ │ ├── fifa17.jpg │ │ │ ├── gbb-epic-sub-zero-driver.jpg │ │ │ ├── gift-card.jpg │ │ │ ├── gift_card_10.png │ │ │ ├── gift_card_100.png │ │ │ ├── gift_card_25.png │ │ │ ├── gift_card_50.png │ │ │ ├── giftcart.png │ │ │ ├── hoffmann_cube_chair_black.jpg │ │ │ ├── horizon.jpg │ │ │ ├── ipad_1.jpg │ │ │ ├── ipad_2.jpg │ │ │ ├── iphone-plus_all_colors.jpg │ │ │ ├── iphone-plus_black.jpg │ │ │ ├── iphone-plus_gold.jpg │ │ │ ├── iphone-plus_red.jpg │ │ │ ├── iphone-plus_rose.jpg │ │ │ ├── iphone-plus_silver.jpg │ │ │ ├── iphoneplus_1.jpg │ │ │ ├── iphoneplus_2.jpg │ │ │ ├── isamu_noguchi_coffeetable_1.jpg │ │ │ ├── isamu_noguchi_coffeetable_2.jpg │ │ │ ├── jack_wolfskin_kanuka_point_1.png │ │ │ ├── josef_hoffmann_sofa_cubus_1.jpg │ │ │ ├── ladies_jacket_black.jpg │ │ │ ├── ladies_jacket_blue.jpg │ │ │ ├── ladies_jacket_green.jpg │ │ │ ├── ladies_jacket_navy.jpg │ │ │ ├── ladies_jacket_orange.jpg │ │ │ ├── ladies_jacket_red.jpg │ │ │ ├── ladies_jacket_silver.jpg │ │ │ ├── le_corbusier_lc2_sofa_1.jpg │ │ │ ├── legoworlds.jpg │ │ │ ├── mies_van_der_rohe_sofa_barcelona_1.jpg │ │ │ ├── mies_van_der_rohe_tisch_barcelona_1.jpg │ │ │ ├── minecraft.jpg │ │ │ ├── nike-strike-football.jpg │ │ │ ├── nike-vopower-53-trainer-hs-ball.jpg │ │ │ ├── princeofpersia.jpg │ │ │ ├── ps4_bundle_minecraft.jpg │ │ │ ├── ps4_slim.jpg │ │ │ ├── ps4_w_controller.jpg │ │ │ ├── ps4_wo_controller.jpg │ │ │ ├── radar_ev_prizm.jpg │ │ │ ├── shirt_meccanica_black_1.jpg │ │ │ ├── shirt_meccanica_black_2.jpg │ │ │ ├── shirt_meccanica_black_3.jpg │ │ │ ├── shirt_meccanica_red_1.jpg │ │ │ ├── shirt_meccanica_red_2.jpg │ │ │ ├── shirt_meccanica_red_3.jpg │ │ │ ├── shirt_meccanica_red_4.jpg │ │ │ ├── sony_dualshock4_wirelesscontroller.png │ │ │ ├── sony_ps3_black.png │ │ │ ├── sony_ps3_plus_game.png │ │ │ ├── sony_ps4.png │ │ │ ├── sony_ps4_bundle.png │ │ │ ├── sony_ps4_camera.png │ │ │ ├── stone_of_wisdom.jpg │ │ │ ├── supremeGolfball_1.jpg │ │ │ ├── supremeGolfball_2.jpg │ │ │ ├── tissot-t-touch-expert-solar-t091_2.jpg │ │ │ ├── tissot-t-touch-expert-solar.jpg │ │ │ ├── titleist-pro-v1x.jpg │ │ │ ├── titleist_sm6_tour_chrome.jpg │ │ │ ├── torfabrik-offizieller-spielball_blue.png │ │ │ ├── torfabrik-offizieller-spielball_green.png │ │ │ ├── torfabrik-offizieller-spielball_red.png │ │ │ ├── torfabrik-offizieller-spielball_white.png │ │ │ ├── torfabrik-offizieller-spielball_yellow.png │ │ │ ├── transocean-chronograph.jpg │ │ │ ├── ultimate-apple-pro-hipster-bundle.jpg │ │ │ ├── vivaldi.jpg │ │ │ ├── watchseries2_1.jpg │ │ │ ├── watchseries2_2.jpg │ │ │ ├── wayfarer_havana.png │ │ │ ├── wayfarer_havana_black.png │ │ │ ├── wayfarer_rayban-black.png │ │ │ ├── wolfskin_shoes_coogee_1.png │ │ │ └── xbox_one_s_1.png │ ├── icons.json │ └── widgetzones.json │ ├── App_GlobalResources │ ├── EditorLocalization.de.designer.cs │ ├── EditorLocalization.de.resx │ ├── EditorLocalization.designer.cs │ ├── EditorLocalization.resx │ ├── GridLocalization.de.designer.cs │ ├── GridLocalization.de.resx │ ├── GridLocalization.designer.cs │ ├── GridLocalization.resx │ ├── MvcLocalization.Designer.cs │ ├── MvcLocalization.de.Designer.cs │ ├── MvcLocalization.de.resx │ └── MvcLocalization.resx │ ├── Config │ ├── ConnectionStrings.config │ ├── SessionState.config │ ├── Web.config │ ├── log4net.Debug.config │ ├── log4net.Release.config │ └── log4net.config │ ├── Content │ ├── Images │ │ ├── ajax_loader_small.gif │ │ ├── default-image-alt.png │ │ ├── default-image.png │ │ ├── flags │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── an.png │ │ │ ├── ao.png │ │ │ ├── ar.png │ │ │ ├── as.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── ax.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── catalonia.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cs.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── do.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── england.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── europeanunion.png │ │ │ ├── fam.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── fm.png │ │ │ ├── fo.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gf.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gl.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gp.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gs.png │ │ │ ├── gt.png │ │ │ ├── gu.png │ │ │ ├── gw.png │ │ │ ├── gy.png │ │ │ ├── hk.png │ │ │ ├── hm.png │ │ │ ├── hn.png │ │ │ ├── hr.png │ │ │ ├── ht.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── ie.png │ │ │ ├── il.png │ │ │ ├── in.png │ │ │ ├── io.png │ │ │ ├── iq.png │ │ │ ├── ir.png │ │ │ ├── is.png │ │ │ ├── it.png │ │ │ ├── jm.png │ │ │ ├── jo.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg.png │ │ │ ├── kh.png │ │ │ ├── ki.png │ │ │ ├── km.png │ │ │ ├── kn.png │ │ │ ├── kp.png │ │ │ ├── kr.png │ │ │ ├── kw.png │ │ │ ├── ky.png │ │ │ ├── kz.png │ │ │ ├── la.png │ │ │ ├── lb.png │ │ │ ├── lc.png │ │ │ ├── li.png │ │ │ ├── lk.png │ │ │ ├── lr.png │ │ │ ├── ls.png │ │ │ ├── lt.png │ │ │ ├── lu.png │ │ │ ├── lv.png │ │ │ ├── ly.png │ │ │ ├── ma.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me.png │ │ │ ├── mg.png │ │ │ ├── mh.png │ │ │ ├── mk.png │ │ │ ├── ml.png │ │ │ ├── mm.png │ │ │ ├── mn.png │ │ │ ├── mo.png │ │ │ ├── mp.png │ │ │ ├── mq.png │ │ │ ├── mr.png │ │ │ ├── ms.png │ │ │ ├── mt.png │ │ │ ├── mu.png │ │ │ ├── mv.png │ │ │ ├── mw.png │ │ │ ├── mx.png │ │ │ ├── my.png │ │ │ ├── mz.png │ │ │ ├── na.png │ │ │ ├── nc.png │ │ │ ├── ne.png │ │ │ ├── nf.png │ │ │ ├── ng.png │ │ │ ├── ni.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── np.png │ │ │ ├── nr.png │ │ │ ├── nu.png │ │ │ ├── nz.png │ │ │ ├── om.png │ │ │ ├── pa.png │ │ │ ├── pe.png │ │ │ ├── pf.png │ │ │ ├── pg.png │ │ │ ├── ph.png │ │ │ ├── pk.png │ │ │ ├── pl.png │ │ │ ├── pm.png │ │ │ ├── pn.png │ │ │ ├── pr.png │ │ │ ├── ps.png │ │ │ ├── pt.png │ │ │ ├── pw.png │ │ │ ├── py.png │ │ │ ├── qa.png │ │ │ ├── re.png │ │ │ ├── ro.png │ │ │ ├── rs.png │ │ │ ├── ru.png │ │ │ ├── rw.png │ │ │ ├── sa.png │ │ │ ├── sb.png │ │ │ ├── sc.png │ │ │ ├── scotland.png │ │ │ ├── sd.png │ │ │ ├── se.png │ │ │ ├── sg.png │ │ │ ├── sh.png │ │ │ ├── si.png │ │ │ ├── sj.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sm.png │ │ │ ├── sn.png │ │ │ ├── so.png │ │ │ ├── sr.png │ │ │ ├── st.png │ │ │ ├── sv.png │ │ │ ├── sy.png │ │ │ ├── sz.png │ │ │ ├── tc.png │ │ │ ├── td.png │ │ │ ├── tf.png │ │ │ ├── tg.png │ │ │ ├── th.png │ │ │ ├── tj.png │ │ │ ├── tk.png │ │ │ ├── tl.png │ │ │ ├── tm.png │ │ │ ├── tn.png │ │ │ ├── to.png │ │ │ ├── tr.png │ │ │ ├── tt.png │ │ │ ├── tv.png │ │ │ ├── tw.png │ │ │ ├── tz.png │ │ │ ├── ua.png │ │ │ ├── ug.png │ │ │ ├── um.png │ │ │ ├── us.png │ │ │ ├── uy.png │ │ │ ├── uz.png │ │ │ ├── va.png │ │ │ ├── vc.png │ │ │ ├── ve.png │ │ │ ├── vg.png │ │ │ ├── vi.png │ │ │ ├── vn.png │ │ │ ├── vu.png │ │ │ ├── wales.png │ │ │ ├── wf.png │ │ │ ├── ws.png │ │ │ ├── ye.png │ │ │ ├── yt.png │ │ │ ├── za.png │ │ │ ├── zm.png │ │ │ └── zw.png │ │ ├── grip-h.png │ │ ├── grip-ne.png │ │ ├── grip-se.png │ │ ├── grip-v.png │ │ ├── grippy.png │ │ ├── sad.png │ │ ├── star-off-12.png │ │ ├── star-off.png │ │ ├── star-on-12.png │ │ └── star-on.png │ ├── Web.config │ ├── bs4 │ │ ├── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ └── scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _tables.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-head.scss │ │ │ ├── bootstrap-main.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ │ └── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ ├── editors │ │ ├── BBEditor │ │ │ └── ed.js │ │ ├── CodeMirror │ │ │ ├── addon │ │ │ │ ├── display │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ └── fullscreen.min.js │ │ │ │ ├── edit │ │ │ │ │ ├── closebrackets.min.js │ │ │ │ │ ├── closetag.min.js │ │ │ │ │ ├── matchbrackets.min.js │ │ │ │ │ └── matchtags.min.js │ │ │ │ ├── fold │ │ │ │ │ └── xml-fold.min.js │ │ │ │ ├── hint │ │ │ │ │ ├── css-hint.min.js │ │ │ │ │ ├── html-hint.min.js │ │ │ │ │ ├── javascript-hint.min.js │ │ │ │ │ ├── show-hint.min.css │ │ │ │ │ ├── show-hint.min.js │ │ │ │ │ └── xml-hint.min.js │ │ │ │ ├── mode │ │ │ │ │ ├── multiplex.min.js │ │ │ │ │ └── overlay.min.js │ │ │ │ └── selection │ │ │ │ │ └── active-line.min.js │ │ │ ├── codemirror.custom.css │ │ │ ├── codemirror.min.css │ │ │ ├── codemirror.min.js │ │ │ ├── mode │ │ │ │ ├── css │ │ │ │ │ └── css.min.js │ │ │ │ ├── htmlmixed │ │ │ │ │ └── htmlmixed.min.js │ │ │ │ ├── javascript │ │ │ │ │ └── javascript.min.js │ │ │ │ ├── liquid │ │ │ │ │ ├── liquid.css │ │ │ │ │ └── liquid.js │ │ │ │ └── xml │ │ │ │ │ └── xml.min.js │ │ │ └── theme │ │ │ │ └── eclipse.min.css │ │ └── summernote │ │ │ ├── font │ │ │ ├── summernote.eot │ │ │ ├── summernote.ttf │ │ │ └── summernote.woff │ │ │ ├── globalinit.js │ │ │ ├── lang │ │ │ ├── summernote-ar-AR.js │ │ │ ├── summernote-de-DE.js │ │ │ ├── summernote-el-GR.js │ │ │ ├── summernote-es-ES.js │ │ │ ├── summernote-es-EU.js │ │ │ ├── summernote-fa-IR.js │ │ │ ├── summernote-fr-FR.js │ │ │ ├── summernote-it-IT.js │ │ │ ├── summernote-ja-JP.js │ │ │ ├── summernote-nl-NL.js │ │ │ ├── summernote-pl-PL.js │ │ │ ├── summernote-pt-BR.js │ │ │ ├── summernote-pt-PT.js │ │ │ ├── summernote-ru-RU.js │ │ │ ├── summernote-sv-SE.js │ │ │ ├── summernote-tr-TR.js │ │ │ ├── summernote-uk-UA.js │ │ │ ├── summernote-zh-CN.js │ │ │ └── summernote-zh-TW.js │ │ │ ├── plugins │ │ │ ├── lang │ │ │ │ ├── de-DE.js │ │ │ │ ├── es-ES.js │ │ │ │ ├── fr-FR.js │ │ │ │ ├── it-IT.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── ru-RU.js │ │ │ │ ├── tr-TR.js │ │ │ │ └── zh-TW.js │ │ │ ├── smartstore.cssclass.js │ │ │ ├── smartstore.image.js │ │ │ ├── smartstore.link.js │ │ │ └── smartstore.tableStyles.js │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ └── summernote-bs4.min.js │ ├── fontastic │ │ ├── fontastic.css │ │ └── fonts │ │ │ ├── fontastic.svg │ │ │ ├── fontastic.ttf │ │ │ └── fontastic.woff │ ├── placeholder.txt │ ├── print-rtl.css │ ├── print.css │ ├── shared │ │ ├── _alert.scss │ │ ├── _bg.scss │ │ ├── _box.scss │ │ ├── _breadcrumb.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _choice.scss │ │ ├── _colors.scss │ │ ├── _custom-scrollbar-buttons.scss │ │ ├── _custom-scrollbar.scss │ │ ├── _dropdown.scss │ │ ├── _entity-picker.scss │ │ ├── _fa.scss │ │ ├── _forms.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav-collapsible.scss │ │ ├── _nav.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _rangeslider.scss │ │ ├── _rtl-bs4.scss │ │ ├── _rtl.scss │ │ ├── _sections.scss │ │ ├── _sortable-grip.scss │ │ ├── _spacing.scss │ │ ├── _spinner.scss │ │ ├── _star-rating.scss │ │ ├── _switch.scss │ │ ├── _throbber.scss │ │ ├── _tree.scss │ │ ├── _typo.scss │ │ ├── _utils.scss │ │ └── _variables-shared.scss │ ├── skinning │ │ ├── _drift.scss │ │ ├── _fileupload.scss │ │ ├── _photoswipe.scss │ │ ├── _pnotify.scss │ │ ├── _rtl.scss │ │ ├── _select2.scss │ │ ├── _slick.scss │ │ ├── _summernote.scss │ │ └── _touchspin.scss │ └── vendors │ │ ├── Chart.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── aos │ │ ├── js │ │ │ └── aos.js │ │ └── scss │ │ │ ├── _animations.scss │ │ │ ├── _core.scss │ │ │ ├── _easing.scss │ │ │ └── aos.scss │ │ ├── beautify │ │ ├── beautify-css.min.js │ │ ├── beautify-html.min.js │ │ └── beautify.min.js │ │ ├── colorpicker │ │ ├── js │ │ │ ├── bootstrap-colorpicker-globalinit.js │ │ │ └── bootstrap-colorpicker.js │ │ └── scss │ │ │ └── _colorpicker.scss │ │ ├── datetimepicker │ │ ├── js │ │ │ ├── tempusdominus-bootstrap-4.js │ │ │ └── tempusdominus-bootstrap-4.min.js │ │ └── scss │ │ │ └── _tempusdominus.scss │ │ ├── drift │ │ ├── Drift.js │ │ ├── Drift.min.js │ │ └── LICENSE │ │ ├── dropzone │ │ └── js │ │ │ ├── dropzone.js │ │ │ └── dropzone.min.js │ │ ├── fa5 │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── font-awesome │ │ ├── FontAwesome.otf │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ ├── imagesloaded │ │ └── imagesloaded.pkgd.min.js │ │ ├── jquery-ui │ │ ├── core.js │ │ ├── effect-shake.js │ │ ├── effect-transfer.js │ │ ├── effect.js │ │ ├── position.js │ │ └── widget.js │ │ ├── jquery │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-migrate-3.0.0.js │ │ ├── jquery-migrate-3.0.0.min.js │ │ ├── jquery.addeasing.js │ │ ├── jquery.ba-outside-events.js │ │ ├── jquery.ba-outside-events.min.js │ │ ├── jquery.scrollTo.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── modernizr │ │ └── modernizr.js │ │ ├── moment │ │ ├── locale │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── se.js │ │ │ ├── sk.js │ │ │ ├── sv.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── x-pseudo.js │ │ │ ├── zh-cn.js │ │ │ └── zh-hk.js │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── photoswipe │ │ ├── LICENSE │ │ ├── _main-settings.scss │ │ ├── photoswipe-ui-default.js │ │ ├── photoswipe-ui-default.min.js │ │ ├── photoswipe.js │ │ ├── photoswipe.min.js │ │ └── photoswipe.scss │ │ ├── pnotify │ │ ├── css │ │ │ ├── pnotify.buttons.css │ │ │ ├── pnotify.css │ │ │ └── pnotify.mobile.css │ │ └── js │ │ │ ├── pnotify.animate.js │ │ │ ├── pnotify.buttons.js │ │ │ ├── pnotify.js │ │ │ └── pnotify.mobile.js │ │ ├── rfs │ │ └── _rfs.scss │ │ ├── select2 │ │ ├── js │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── es.js │ │ │ │ ├── fa.js │ │ │ │ ├── fr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.js │ │ │ └── select2.min.js │ │ └── scss │ │ │ ├── _dropdown.scss │ │ │ ├── _multiple.scss │ │ │ ├── _single.scss │ │ │ └── core.scss │ │ ├── slick │ │ ├── slick.js │ │ └── slick.scss │ │ ├── sortable │ │ ├── jquery-sortable.js │ │ └── sortable.js │ │ ├── touchspin │ │ └── jquery.bootstrap-touchspin.js │ │ ├── underscore │ │ ├── underscore.js │ │ ├── underscore.min.js │ │ ├── underscore.min.map │ │ ├── underscore.string.js │ │ └── underscore.string.min.js │ │ ├── vue │ │ ├── vue.js │ │ └── vue.min.js │ │ └── x-editable │ │ ├── README.txt │ │ ├── bootstrap-editable.css │ │ └── bootstrap-editable.js │ ├── Controllers │ ├── BlogController.cs │ ├── BoardsController.cs │ ├── CatalogController.cs │ ├── CatalogHelper.MapProduct.cs │ ├── CatalogHelper.cs │ ├── CheckoutController.cs │ ├── CommonController.cs │ ├── CountryController.cs │ ├── CustomerController.cs │ ├── DownloadController.cs │ ├── EntityController.cs │ ├── ErrorController.cs │ ├── ExternalAuthenticationController.cs │ ├── HomeController.cs │ ├── InstallController.cs │ ├── MediaController.cs │ ├── MenuController.cs │ ├── NewsController.cs │ ├── NewsletterController.cs │ ├── OrderController.cs │ ├── OrderHelper.cs │ ├── PollController.cs │ ├── PrivateMessagesController.cs │ ├── ProductController.cs │ ├── ProfileController.cs │ ├── ReturnRequestController.cs │ ├── SearchController.cs │ ├── ShoppingCartController.cs │ ├── TaskSchedulerController.cs │ ├── ThemeController.cs │ ├── TopicController.cs │ └── WidgetController.cs │ ├── Exchange │ └── placeholder │ ├── Extensions │ ├── EditorExtensions.cs │ ├── MappingExtensions.cs │ ├── ProductDetailsExtensions.cs │ └── QueryExtensions.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Infrastructure │ ├── Cache │ │ └── ModelCacheEventConsumer.cs │ ├── DefaultBundles.cs │ ├── DefaultFacetTemplateSelector.cs │ ├── DefaultWidgetSelector.cs │ ├── DependencyRegistrar.cs │ ├── Installation │ │ ├── DeDESeedData.cs │ │ ├── EnUSSeedData.cs │ │ ├── IInstallationLocalizationService.cs │ │ ├── InstallDataSeeder.cs │ │ ├── InstallationAppLanguageMetadata.cs │ │ ├── InstallationLanguage.cs │ │ └── InstallationLocalizationService.cs │ ├── Menus │ │ ├── MainMenuInvalidator.cs │ │ ├── MainMenuShrinker.cs │ │ └── MyAccountMenu.cs │ └── Routes │ │ ├── 1_StoreRoutes.cs │ │ ├── 2_DefaultRoutes.cs │ │ ├── 3_GenericRoutes.cs │ │ ├── 4_LastRoutes.cs │ │ └── MapLegacyRoutesAttribute.cs │ ├── Models │ ├── Blogs │ │ ├── AddBlogCommentModel.cs │ │ ├── BlogPagingFilteringModel.cs │ │ ├── BlogPostListModel.cs │ │ ├── BlogPostModel.cs │ │ ├── BlogPostTagListModel.cs │ │ ├── BlogPostTagModel.cs │ │ └── BlogPostYearMonthModel.cs │ ├── Boards │ │ ├── ActiveDiscussionsModel.cs │ │ ├── BoardsIndexModel.cs │ │ ├── EditForumPostModel.cs │ │ ├── EditForumTopicModel.cs │ │ ├── ForumGroupModel.cs │ │ ├── ForumPageModel.cs │ │ ├── ForumPostModel.cs │ │ ├── ForumRowModel.cs │ │ ├── ForumSearchResultModel.cs │ │ ├── ForumTopicPageModel.cs │ │ ├── ForumTopicRowModel.cs │ │ ├── LastPostModel.cs │ │ └── TopicMoveModel.cs │ ├── Catalog │ │ ├── BackInStockSubscribeModel.cs │ │ ├── CategoryModel.cs │ │ ├── IListActions.cs │ │ ├── IQuantityInput.cs │ │ ├── ManufacturerModel.cs │ │ ├── ManufacturerNavigationModel.cs │ │ ├── ManufacturerOverviewModel.cs │ │ ├── PopularProductTagsModel.cs │ │ ├── ProductAskQuestionModel.cs │ │ ├── ProductDetailsModel.cs │ │ ├── ProductEmailAFriendModel.cs │ │ ├── ProductReviewModel.cs │ │ ├── ProductSpecificationModel.cs │ │ ├── ProductSummaryModel.cs │ │ ├── ProductTagModel.cs │ │ └── ProductsByTagModel.cs │ ├── Checkout │ │ ├── CheckoutBillingAddressModel.cs │ │ ├── CheckoutCompletedModel.cs │ │ ├── CheckoutConfirmModel.cs │ │ ├── CheckoutPaymentInfoModel.cs │ │ ├── CheckoutPaymentMethodModel.cs │ │ ├── CheckoutProgressModel.cs │ │ ├── CheckoutShippingAddressModel.cs │ │ ├── CheckoutShippingMethodModel.cs │ │ └── UpdateSectionJsonModel.cs │ ├── Common │ │ ├── AccountDropdownModel.cs │ │ ├── AddressModel.cs │ │ ├── CommentModel.cs │ │ ├── CompareDropdownModel.cs │ │ ├── ConsentModel.cs │ │ ├── ContactUsModel.cs │ │ ├── CookieManagerModel.cs │ │ ├── CurrencyModel.cs │ │ ├── CurrencySelectorModel.cs │ │ ├── FooterModel.cs │ │ ├── LanguageModel.cs │ │ ├── LanguageSelectorModel.cs │ │ ├── MenuBarModel.cs │ │ ├── MetaPropertiesModel.cs │ │ ├── PagerModel.cs │ │ ├── ShopBarModel.cs │ │ ├── ShopHeaderModel.cs │ │ ├── ShopLogoModel.cs │ │ ├── StoreThemeModel.cs │ │ ├── StoreThemeSelectorModel.cs │ │ └── TaxTypeSelectorModel.cs │ ├── Customer │ │ ├── AccountActivationModel.cs │ │ ├── BackInStockSubscriptionModel.cs │ │ ├── ChangePasswordModel.cs │ │ ├── CustomerAddressEditModel.cs │ │ ├── CustomerAddressListModel.cs │ │ ├── CustomerAvatarModel.cs │ │ ├── CustomerBackInStockSubscriptionsModel.cs │ │ ├── CustomerDownloadableProductsModel.cs │ │ ├── CustomerForumSubscriptionsModel.cs │ │ ├── CustomerInfoModel.cs │ │ ├── CustomerOrderListModel.cs │ │ ├── CustomerReturnRequestsModel.cs │ │ ├── CustomerRewardPointsModel.cs │ │ ├── ExternalAuthenticationMethodModel.cs │ │ ├── ForumSubscriptionModel.cs │ │ ├── LoginModel.cs │ │ ├── PasswordRecoveryConfirmModel.cs │ │ ├── PaswordRecoveryModel.cs │ │ ├── RegisterModel.cs │ │ └── RegisterResultModel.cs │ ├── Entity │ │ └── EntityPickerModel.cs │ ├── Install │ │ └── InstallModel.cs │ ├── Media │ │ ├── MediaGalleryModel.cs │ │ └── PictureModel.cs │ ├── News │ │ ├── AddNewsCommentModel.cs │ │ ├── HomePageNewsItemsModel.cs │ │ ├── NewsItemListModel.cs │ │ ├── NewsItemModel.cs │ │ └── NewsPagingFilteringModel.cs │ ├── Newsletter │ │ └── SubscriptionActivationModel.cs │ ├── Order │ │ ├── OrderDetailsModel.cs │ │ ├── ShipmentDetailsModel.cs │ │ └── SubmitReturnRequestModel.cs │ ├── Polls │ │ └── PollModel.cs │ ├── PrivateMessages │ │ ├── PrivateMessageIndexModel.cs │ │ ├── PrivateMessageListModel.cs │ │ ├── PrivateMessageModel.cs │ │ └── SendPrivateMessageModel.cs │ ├── Profile │ │ ├── PostsModel.cs │ │ ├── ProfileIndexModel.cs │ │ ├── ProfileInfoModel.cs │ │ └── ProfilePostsModel.cs │ ├── Search │ │ ├── ISearchResultModel.cs │ │ ├── SearchBoxModel.cs │ │ ├── SearchResultModel.cs │ │ └── SearchResultModelBase.cs │ ├── ShoppingCart │ │ ├── ButtonPaymentMethodModel.cs │ │ ├── EstimateShippingModel.cs │ │ ├── MiniShoppingCartModel.cs │ │ ├── OffCanvasCartModel.cs │ │ ├── OrderTotalsModel.cs │ │ ├── ShoppingCartModel.cs │ │ ├── WishlistEmailAFriendModel.cs │ │ └── WishlistModel.cs │ └── Topics │ │ ├── TopicModel.cs │ │ └── TopicWidgetModel.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Refresh.html │ ├── Scripts │ ├── _references.js │ ├── globalize │ │ ├── cultures │ │ │ ├── globalize.culture.de-CH.js │ │ │ ├── globalize.culture.de-DE.js │ │ │ ├── globalize.culture.en-GB.js │ │ │ └── globalize.culture.tr-TR.js │ │ └── globalize.js │ ├── jquery.validate.unobtrusive.custom.js │ ├── legacy │ │ ├── jquery.menu-aim.js │ │ ├── jquery.pnotify.js │ │ ├── jquery.preload.js │ │ ├── jquery.transit.js │ │ ├── prettify.js │ │ └── smartstore.shrinkmenu.js │ ├── public.ajaxcart.js │ ├── public.common.js │ ├── public.offcanvas-cart.js │ ├── public.offcanvas-menu.js │ ├── public.product.js │ ├── public.reviews.js │ ├── public.search.js │ ├── public.shopbar.js │ ├── public.voting.js │ ├── smartstore.articlelist.js │ ├── smartstore.common.js │ ├── smartstore.dialogs.js │ ├── smartstore.doAjax.js │ ├── smartstore.dropzoneWrapper.js │ ├── smartstore.entityPicker.js │ ├── smartstore.eventbroker.js │ ├── smartstore.gallery.js │ ├── smartstore.globalization.adapter.js │ ├── smartstore.globalization.js │ ├── smartstore.hacks.js │ ├── smartstore.instantsearch.js │ ├── smartstore.jquery.utils.js │ ├── smartstore.keynav.js │ ├── smartstore.linkbuilder.js │ ├── smartstore.media.js │ ├── smartstore.megamenu.js │ ├── smartstore.offcanvas.js │ ├── smartstore.parallax.js │ ├── smartstore.rangeslider.js │ ├── smartstore.responsiveNav.js │ ├── smartstore.selectwrapper.js │ ├── smartstore.system.js │ ├── smartstore.throbber.js │ ├── smartstore.thumbzoomer.js │ ├── smartstore.touchevents.js │ ├── smartstore.tree.js │ ├── smartstore.viewport.js │ └── underscore.mixins.js │ ├── SmartStore.Web.csproj │ ├── Themes │ ├── Flex │ │ ├── Content │ │ │ ├── _accordion.scss │ │ │ ├── _artlist.scss │ │ │ ├── _block.scss │ │ │ ├── _blog.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cart.scss │ │ │ ├── _checkout.scss │ │ │ ├── _cookie-manager.scss │ │ │ ├── _custom.scss │ │ │ ├── _fonts.scss │ │ │ ├── _footer.scss │ │ │ ├── _forum.scss │ │ │ ├── _gallery.scss │ │ │ ├── _layout.scss │ │ │ ├── _login.scss │ │ │ ├── _megamenu.scss │ │ │ ├── _menu.scss │ │ │ ├── _misc.scss │ │ │ ├── _news.scss │ │ │ ├── _print.scss │ │ │ ├── _product.scss │ │ │ ├── _rating.scss │ │ │ ├── _rtl.scss │ │ │ ├── _search.scss │ │ │ ├── _shopbar.scss │ │ │ ├── _text-expander.scss │ │ │ ├── _user.scss │ │ │ ├── _variables-custom.scss │ │ │ ├── _variables-reset.scss │ │ │ ├── _variables.scss │ │ │ ├── compiled │ │ │ │ └── theme.css │ │ │ ├── images │ │ │ │ ├── grippy.png │ │ │ │ ├── loading.gif │ │ │ │ ├── star-off-12.png │ │ │ │ ├── star-off.png │ │ │ │ ├── star-on-12.png │ │ │ │ └── star-on.png │ │ │ ├── theme-rtl.scss │ │ │ └── theme.scss │ │ ├── Views │ │ │ ├── Shared │ │ │ │ ├── ConfigureTheme.cshtml │ │ │ │ ├── EmailTemplates │ │ │ │ │ ├── address.liquid │ │ │ │ │ ├── footer.liquid │ │ │ │ │ ├── header.liquid │ │ │ │ │ ├── master.liquid │ │ │ │ │ ├── order.liquid │ │ │ │ │ └── shipment.liquid │ │ │ │ └── Head.cshtml │ │ │ └── Web.config │ │ ├── preview.png │ │ └── theme.config │ ├── FlexBlack │ │ ├── Content │ │ │ ├── _custom.scss │ │ │ └── _user.scss │ │ ├── Views │ │ │ └── Web.config │ │ ├── preview.png │ │ └── theme.config │ ├── FlexBlue │ │ ├── Content │ │ │ ├── _custom.scss │ │ │ └── _user.scss │ │ ├── Views │ │ │ └── Web.config │ │ ├── preview.png │ │ └── theme.config │ └── Web.config │ ├── Views │ ├── Blog │ │ ├── BlogPost.cshtml │ │ ├── List.cshtml │ │ └── Partials │ │ │ ├── BlogMonths.cshtml │ │ │ ├── BlogSummary.cshtml │ │ │ ├── BlogSummaryHeading.cshtml │ │ │ ├── BlogSummaryList.cshtml │ │ │ └── BlogTags.cshtml │ ├── Boards │ │ ├── ActiveDiscussions.cshtml │ │ ├── Forum.cshtml │ │ ├── ForumGroup.cshtml │ │ ├── Index.cshtml │ │ ├── Partials │ │ │ ├── Filters.cshtml │ │ │ ├── ForumGroup.cshtml │ │ │ ├── InstantSearch.cshtml │ │ │ ├── LastPost.cshtml │ │ │ ├── SearchHits.cshtml │ │ │ ├── _ActiveTopics.cshtml │ │ │ ├── _CreateUpdatePost.cshtml │ │ │ ├── _CreateUpdateTopic.cshtml │ │ │ └── _ForumPost.cshtml │ │ ├── PostCreate.cshtml │ │ ├── PostEdit.cshtml │ │ ├── Search.cshtml │ │ ├── Topic.cshtml │ │ ├── TopicCreate.cshtml │ │ ├── TopicEdit.cshtml │ │ └── TopicMove.cshtml │ ├── Catalog │ │ ├── CategoryTemplate.ProductsInGridOrLines.cshtml │ │ ├── CompareProducts.cshtml │ │ ├── ManufacturerAll.cshtml │ │ ├── ManufacturerTemplate.ProductsInGridOrLines.cshtml │ │ ├── Menus │ │ │ └── Categories.cshtml │ │ ├── Partials │ │ │ ├── HomepageBestSellers.cshtml │ │ │ ├── HomepageCategories.cshtml │ │ │ ├── HomepageManufacturers.cshtml │ │ │ ├── HomepageProducts.cshtml │ │ │ ├── OffCanvasCompare.cshtml │ │ │ ├── PopularProductTags.cshtml │ │ │ └── RecentlyViewedProductsBlock.cshtml │ │ ├── ProductTagsAll.cshtml │ │ ├── ProductsByTag.cshtml │ │ ├── RecentlyAddedProducts.cshtml │ │ └── RecentlyViewedProducts.cshtml │ ├── Checkout │ │ ├── BillingAddress.cshtml │ │ ├── Completed.cshtml │ │ ├── Confirm.cshtml │ │ ├── Partials │ │ │ └── CheckoutProgress.cshtml │ │ ├── PaymentMethod.cshtml │ │ ├── ShippingAddress.cshtml │ │ └── ShippingMethod.cshtml │ ├── Common │ │ ├── Partials │ │ │ ├── AccountDropdown.cshtml │ │ │ ├── CookieManager.cshtml │ │ │ ├── CurrencySelector.cshtml │ │ │ ├── Favicon.cshtml │ │ │ ├── Footer.cshtml │ │ │ ├── GdprConsent.cshtml │ │ │ ├── JavaScriptDisabledWarning.cshtml │ │ │ ├── LanguageSelector.cshtml │ │ │ ├── Logo.cshtml │ │ │ ├── MetaProperties.cshtml │ │ │ ├── ShopBar.Tools.cshtml │ │ │ ├── ShopBar.cshtml │ │ │ ├── StoreThemeSelector.cshtml │ │ │ ├── TaxTypeSelector.cshtml │ │ │ └── TopBar.cshtml │ │ ├── PdfReceiptFooter.cshtml │ │ └── PdfReceiptHeader.cshtml │ ├── Customer │ │ ├── AccountActivation.cshtml │ │ ├── AddressAdd.cshtml │ │ ├── AddressEdit.cshtml │ │ ├── Addresses.cshtml │ │ ├── Avatar.cshtml │ │ ├── BackInStockSubscriptions.cshtml │ │ ├── ChangePassword.cshtml │ │ ├── DownloadableProducts.cshtml │ │ ├── ForumSubscriptions.cshtml │ │ ├── Info.cshtml │ │ ├── Login.cshtml │ │ ├── Orders.cshtml │ │ ├── Partials │ │ │ ├── _CheckUsernameAvailability.cshtml │ │ │ └── _ExternalAuthentication.AssociateMessage.cshtml │ │ ├── PasswordRecovery.cshtml │ │ ├── PasswordRecoveryConfirm.cshtml │ │ ├── Register.cshtml │ │ ├── RegisterResult.cshtml │ │ ├── ReturnRequests.cshtml │ │ ├── RewardPoints.cshtml │ │ └── UserAgreement.cshtml │ ├── Entity │ │ └── Partials │ │ │ ├── Picker.List.cshtml │ │ │ └── Picker.cshtml │ ├── ExternalAuthentication │ │ └── Partials │ │ │ └── ExternalMethods.cshtml │ ├── Home │ │ ├── ContactUs.cshtml │ │ ├── Index.cshtml │ │ └── StoreClosed.cshtml │ ├── Install │ │ └── Index.cshtml │ ├── Menu │ │ ├── Breadcrumb.cshtml │ │ ├── OffCanvas.Brands.cshtml │ │ ├── OffCanvas.Home.cshtml │ │ └── OffCanvas.Menu.cshtml │ ├── News │ │ ├── List.cshtml │ │ ├── NewsItem.cshtml │ │ └── Partials │ │ │ ├── HomePageNews.cshtml │ │ │ ├── NewsSummary.cshtml │ │ │ ├── NewsSummaryHeading.cshtml │ │ │ └── NewsSummaryList.cshtml │ ├── Newsletter │ │ └── SubscriptionActivation.cshtml │ ├── Order │ │ ├── Details.Print.cshtml │ │ ├── Details.cshtml │ │ └── ShipmentDetails.cshtml │ ├── Poll │ │ └── Partials │ │ │ ├── HomePagePolls.cshtml │ │ │ ├── PollBlock.cshtml │ │ │ └── _Poll.cshtml │ ├── PrivateMessages │ │ ├── Index.cshtml │ │ ├── Partials │ │ │ ├── Inbox.cshtml │ │ │ └── SentItems.cshtml │ │ ├── Send.cshtml │ │ └── View.cshtml │ ├── Product │ │ ├── AskQuestion.cshtml │ │ ├── BackInStockSubscribePopup.cshtml │ │ ├── EmailAFriend.cshtml │ │ ├── Partials │ │ │ ├── CrossSellProducts.cshtml │ │ │ ├── Product.AlsoPurchased.cshtml │ │ │ ├── Product.AssociatedProduct.cshtml │ │ │ ├── Product.Attrs.cshtml │ │ │ ├── Product.Bundle.Items.cshtml │ │ │ ├── Product.Bundle.Price.cshtml │ │ │ ├── Product.Bundle.cshtml │ │ │ ├── Product.CustomerPrice.cshtml │ │ │ ├── Product.GiftCard.cshtml │ │ │ ├── Product.Info.cshtml │ │ │ ├── Product.Media.cshtml │ │ │ ├── Product.Offer.Actions.Misc.cshtml │ │ │ ├── Product.Offer.Actions.cshtml │ │ │ ├── Product.Offer.Price.cshtml │ │ │ ├── Product.Offer.cshtml │ │ │ ├── Product.RelatedProducts.cshtml │ │ │ ├── Product.ReviewSummary.cshtml │ │ │ ├── Product.Reviews.cshtml │ │ │ ├── Product.Specs.cshtml │ │ │ ├── Product.StockInfo.cshtml │ │ │ ├── Product.Tabs.cshtml │ │ │ ├── Product.Tags.cshtml │ │ │ ├── Product.TierPrices.cshtml │ │ │ └── Product.Variants.cshtml │ │ ├── Product.cshtml │ │ └── Reviews.cshtml │ ├── Profile │ │ ├── Index.cshtml │ │ └── Partials │ │ │ ├── Info.cshtml │ │ │ └── Posts.cshtml │ ├── ReturnRequest │ │ └── ReturnRequest.cshtml │ ├── Search │ │ ├── FacetTemplates │ │ │ ├── MultiSelect.cshtml │ │ │ ├── Price.cshtml │ │ │ ├── Rating.cshtml │ │ │ └── SingleSelect.cshtml │ │ ├── Partials │ │ │ ├── Filters.Active.cshtml │ │ │ ├── Filters.cshtml │ │ │ ├── InstantSearch.HitGroup.cshtml │ │ │ ├── InstantSearch.TopProducts.cshtml │ │ │ ├── InstantSearch.cshtml │ │ │ └── SearchBox.cshtml │ │ └── Search.cshtml │ ├── Shared │ │ ├── ChoiceTemplates │ │ │ ├── Choice.Box.cshtml │ │ │ ├── Choice.CheckRadio.cshtml │ │ │ ├── Choice.Date.cshtml │ │ │ ├── Choice.Dropdown.cshtml │ │ │ ├── Choice.FileUpload.cshtml │ │ │ ├── Choice.Radio.cshtml │ │ │ ├── Choice.TextArea.cshtml │ │ │ ├── Choice.TextBox.cshtml │ │ │ └── Choice.cshtml │ │ ├── Components │ │ │ ├── EntityPicker.cshtml │ │ │ ├── FileUploader.cshtml │ │ │ └── Product.List.Pager.cshtml │ │ ├── ConfigureTheme.cshtml │ │ ├── DisplayTemplates │ │ │ └── DateTime.cshtml │ │ ├── EditorTemplates │ │ │ ├── Boolean.cshtml │ │ │ ├── ButtonType.cshtml │ │ │ ├── Byte.cshtml │ │ │ ├── Color.cshtml │ │ │ ├── DateTime.cshtml │ │ │ ├── Decimal.cshtml │ │ │ ├── Double.cshtml │ │ │ ├── Html.cshtml │ │ │ ├── Int32.cshtml │ │ │ ├── Int64.cshtml │ │ │ ├── Link.cshtml │ │ │ ├── Liquid.cshtml │ │ │ ├── Media.cshtml │ │ │ ├── QtyInput.cshtml │ │ │ ├── Range.cshtml │ │ │ └── Time.cshtml │ │ ├── Error.cshtml │ │ ├── Layouts │ │ │ ├── _Checkout.cshtml │ │ │ ├── _Document.cshtml │ │ │ ├── _Layout.Bare.cshtml │ │ │ ├── _Layout.Off.cshtml │ │ │ ├── _Layout.Popup.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _MyAccount.cshtml │ │ │ └── _Print.cshtml │ │ ├── LicenseRequired.cshtml │ │ ├── MediaTemplates │ │ │ ├── Audio.cshtml │ │ │ ├── Bin.cshtml │ │ │ ├── Document.cshtml │ │ │ ├── Image.cshtml │ │ │ ├── Text.cshtml │ │ │ ├── Video.cshtml │ │ │ └── _Thumbnail.cshtml │ │ ├── Menus │ │ │ ├── Dropdown.cshtml │ │ │ ├── LinkList.cshtml │ │ │ ├── ListGroup.cshtml │ │ │ ├── Main.cshtml │ │ │ └── Navbar.cshtml │ │ ├── NotFound.cshtml │ │ └── Partials │ │ │ ├── Comment.Item.cshtml │ │ │ ├── Comment.List.cshtml │ │ │ ├── ConditionalComments.cshtml │ │ │ ├── Customer.Avatar.cshtml │ │ │ ├── Head.cshtml │ │ │ ├── MediaGallery.cshtml │ │ │ ├── PhotoSwipe.cshtml │ │ │ ├── Product.List.FilterSort.cshtml │ │ │ ├── Product.List.Item.Brand.cshtml │ │ │ ├── Product.List.Item.Buttons.cshtml │ │ │ ├── Product.List.Item.Price.cshtml │ │ │ ├── Product.List.Item.Rating.cshtml │ │ │ ├── Product.List.Item.Variants.cshtml │ │ │ ├── Product.List.Item.cshtml │ │ │ ├── Product.List.Pager.cshtml │ │ │ ├── Product.List.ViewMode.cshtml │ │ │ ├── Product.List.cshtml │ │ │ ├── _Assets.cshtml │ │ │ ├── _ClientRes.cshtml │ │ │ ├── _CreateOrUpdateAddress.cshtml │ │ │ ├── _GoogleFonts.cshtml │ │ │ └── _Notifications.cshtml │ ├── ShoppingCart │ │ ├── Cart.cshtml │ │ ├── EmailWishlist.cshtml │ │ ├── Partials │ │ │ ├── CartItems.cshtml │ │ │ ├── EstimateShipping.cshtml │ │ │ ├── OffCanvasCart.cshtml │ │ │ ├── OffCanvasShoppingCart.cshtml │ │ │ ├── OffCanvasWishlist.cshtml │ │ │ ├── OrderSummary.cshtml │ │ │ ├── OrderTotals.cshtml │ │ │ ├── WishlistItems.cshtml │ │ │ ├── _CheckoutAttributes.cshtml │ │ │ ├── _CommentBox.cshtml │ │ │ ├── _DiscountBox.cshtml │ │ │ ├── _GiftCardBox.cshtml │ │ │ ├── _OrderReviewData.cshtml │ │ │ ├── _RefreshCartScript.cshtml │ │ │ └── _RewardPointsBox.cshtml │ │ └── Wishlist.cshtml │ ├── Topic │ │ ├── Partials │ │ │ ├── TopicBlock.cshtml │ │ │ └── TopicWidget.cshtml │ │ └── TopicDetails.cshtml │ ├── Web.config │ └── Widget │ │ └── Partials │ │ ├── TabWidgets.cshtml │ │ └── WidgetsByZone.cshtml │ ├── Web.Debug.config │ ├── Web.EFMigrations.config │ ├── Web.PluginDev.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── license.txt │ └── packages.config ├── SmartStoreNET.Minimal.sln ├── SmartStoreNET.sln ├── Tests ├── SmartStore.Core.Tests │ ├── App.config │ ├── Collections │ │ └── TreeNodeTests.cs │ ├── ConversionTests.cs │ ├── Data │ │ └── Hooks │ │ │ ├── DefaultDbHookHandlerTests.cs │ │ │ ├── FakeHooks.cs │ │ │ └── HookedEntityMock.cs │ ├── Domain │ │ ├── Blogs │ │ │ └── BlogPostTests.cs │ │ ├── Common │ │ │ └── AddressTests.cs │ │ ├── Configuration │ │ │ └── SettingTestFixture.cs │ │ ├── Customers │ │ │ └── CustomerTests.cs │ │ ├── Directory │ │ │ └── CurrencyTests.cs │ │ ├── EntityEqualityTests.cs │ │ ├── Orders │ │ │ ├── GiftCardTests.cs │ │ │ └── RecurringPaymentTests.cs │ │ └── Stores │ │ │ └── StoreExtensionsTests.cs │ ├── ExtensionsTests.cs │ ├── Fakes │ │ └── FakeTypeFinder.cs │ ├── FastPropertyTests.cs │ ├── FileSystemStorageProviderTests.cs │ ├── Files │ │ └── testdata.html │ ├── Infrastructure │ │ ├── DependencyManagement │ │ │ └── AutofacTests.cs │ │ ├── SingletonTests.cs │ │ └── TypeFinderTests.cs │ ├── MiniMapperTest.cs │ ├── PerformanceTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rules │ │ └── Filters │ │ │ ├── FilterTests.cs │ │ │ └── FilterTestsBase.cs │ ├── SmartStore.Core.Tests.csproj │ ├── TopologicSortTests.cs │ ├── TypeFindingBase.cs │ ├── WebHelperTests.cs │ ├── WildcardTests.cs │ └── packages.config ├── SmartStore.Data.Tests │ ├── Affiliates │ │ └── AffiliatePersistenceTests.cs │ ├── App.config │ ├── Blogs │ │ └── BlogPostPersistenceTests.cs │ ├── Catalog │ │ ├── BackInStockSubscriptionPersistenceTests.cs │ │ ├── CategoryPersistenceTests.cs │ │ ├── CategoryTemplatePersistenceTests.cs │ │ ├── ManufacturerPersistenceTests.cs │ │ ├── ManufacturerTemplatePersistenceTests.cs │ │ ├── ProductAttributePersistenceTests.cs │ │ ├── ProductCategoryPersistenceTests.cs │ │ ├── ProductManufacturerPersistenceTests.cs │ │ ├── ProductPersistenceTests.cs │ │ ├── ProductPicturePersistenceTests.cs │ │ ├── ProductSpecificationAttributePersistenceTests.cs │ │ ├── ProductTagPersistenceTests.cs │ │ ├── ProductTemplatePersistenceTests.cs │ │ ├── ProductVariantAttributeCombinationPersistenceTests.cs │ │ ├── ProductVariantAttributePersistenceTests.cs │ │ ├── ProductVariantAttributeValuePersistenceTests.cs │ │ ├── SpecificationAttributeOptionPersistenceTests.cs │ │ ├── SpecificationAttributePersistenceTests.cs │ │ └── TierPricePersistenceTests.cs │ ├── Common │ │ ├── AddressPersistenceTests.cs │ │ └── GenericAttributePersistenceTests.cs │ ├── Configuration │ │ └── SettingPersistenceTests.cs │ ├── Customers │ │ ├── CustomerContentPersistenceTests.cs │ │ ├── CustomerPersistenceTests.cs │ │ ├── CustomerRolePersistenceTests.cs │ │ ├── ExternalAuthenticationRecordPersistenceTests.cs │ │ └── RewardPointsHistoryPersistenceTests.cs │ ├── Directory │ │ ├── CountryPersistenceTests.cs │ │ ├── CurrencyPersistenceTests.cs │ │ ├── MeasureDimensionPersistenceTests.cs │ │ ├── MeasureWeightPersistenceTests.cs │ │ └── StateProvincePersistenceTests.cs │ ├── Discounts │ │ ├── DiscountPersistenceTests.cs │ │ └── DiscountUsageHistoryPersistenceTests.cs │ ├── Forums │ │ ├── ForumGroupPersistenceTests.cs │ │ ├── ForumPersistenceTests.cs │ │ ├── ForumPostPersistenceTests.cs │ │ ├── ForumSubscriptionPersistenceTests.cs │ │ ├── ForumTopicPersistenceTests.cs │ │ └── PrivateMessagePersistenceTests.cs │ ├── GlobalSetup.cs │ ├── Localization │ │ ├── LanguagePersistenceTests.cs │ │ ├── LocaleStringResourcePersistenceTests.cs │ │ └── LocalizedPropertyPersistenceTests.cs │ ├── Logging │ │ ├── ActivityLogPersistenceTests.cs │ │ └── LogPersistenceTests.cs │ ├── Media │ │ ├── DownloadPersistenceTests.cs │ │ └── PicturePersistenceTests.cs │ ├── Messages │ │ ├── CampaignPersistenceTests.cs │ │ ├── EmailAccountPersistenceTests.cs │ │ ├── MessageTemplatePersistenceTests.cs │ │ ├── NewsLetterSubscriptionPersistenceTests.cs │ │ └── QueuedEmailPersistenceTests.cs │ ├── News │ │ └── NewsPersistenceTests.cs │ ├── Orders │ │ ├── CheckoutAttributePersistenceTests.cs │ │ ├── CheckoutAttributeValuePersistenceTests.cs │ │ ├── GiftCardPersistenceTests.cs │ │ ├── GiftCardUsageHistoryPersistenceTests.cs │ │ ├── OrderItemPersistenceTests.cs │ │ ├── OrderNotePersistenceTests.cs │ │ ├── OrderPersistenceTests.cs │ │ ├── RecurringPaymentHistoryPersistenceTests.cs │ │ ├── RecurringPaymentPersistenceTests.cs │ │ ├── ReturnRequestPersistenceTests.cs │ │ └── ShoppingCartItemPeristenceTests.cs │ ├── PersistenceTest.cs │ ├── Polls │ │ └── PollPersistenceTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SchemaTests.cs │ ├── Security │ │ ├── AclRecordPersistenceTests.cs │ │ └── PermissionRecordPersistenceTests.cs │ ├── Setup │ │ └── MigrateBuilderTests.cs │ ├── Shipping │ │ ├── ShipmentItemPersistenceTests.cs │ │ ├── ShipmentPersistenceTests.cs │ │ └── ShippingMethodPersistenceTests.cs │ ├── SmartStore.Data.Tests.csproj │ ├── Stores │ │ ├── StoreMappingPersistenceTests.cs │ │ └── StorePersistenceTests.cs │ ├── Tasks │ │ └── ScheduleTaskPersistenceTests.cs │ ├── Tax │ │ └── TaxCategoryPersistenceTests.cs │ ├── TestDbConfiguration.cs │ ├── Topics │ │ └── TopicPersistenceTests.cs │ └── packages.config ├── SmartStore.Services.Tests │ ├── App.config │ ├── Catalog │ │ ├── PriceCalculationServiceTests.cs │ │ ├── PriceFormatterTests.cs │ │ ├── ProductAttributeParserAndFormatterTests.cs │ │ ├── ProductExtensionTests.cs │ │ └── TierPriceExtensionTests.cs │ ├── Configuration │ │ ├── ConfigFileSettingService.cs │ │ ├── ConfigFileSettingServiceTests.cs │ │ └── ConfigurationProviderTests.cs │ ├── Customers │ │ ├── CustomerExtensionTests.cs │ │ └── CustomerRegistrationServiceTests.cs │ ├── DataExchange │ │ ├── CsvWriterTests.cs │ │ ├── DataReaderTests.cs │ │ ├── Files │ │ │ ├── testdata.csv │ │ │ └── testdata.xlsx │ │ ├── ImportDataSegmenterTests.cs │ │ └── SyncMappingServiceTests.cs │ ├── Directory │ │ ├── CurrencyServiceTests.cs │ │ ├── GeoCountryLookupTests.cs │ │ ├── MeasureServiceTests.cs │ │ └── TestExchangeRateProvider.cs │ ├── Discounts │ │ ├── DiscountExtensionsTests.cs │ │ └── DiscountServiceTests.cs │ ├── Events │ │ ├── ConsumerRegistryTests.cs │ │ └── TestConsumers.cs │ ├── Helpers │ │ └── DateTimeHelperTests.cs │ ├── Localization │ │ └── LanguageServiceTests.cs │ ├── Logging │ │ └── CustomerActivityServiceTests.cs │ ├── Media │ │ └── Storage │ │ │ └── TestDatabaseMediaStorageProvider.cs │ ├── Messages │ │ ├── Attachment.pdf │ │ ├── NewsLetterSubscriptionServiceTests.cs │ │ └── QueuedEmailServiceTests.cs │ ├── MockProviderManager.cs │ ├── Orders │ │ ├── CheckoutAttributeExtensionsTests.cs │ │ ├── CheckoutAttributeParserAndFormatterTests.cs │ │ ├── OrderProcessingServiceTests.cs │ │ └── OrderTotalCalculationServiceTests.cs │ ├── Payments │ │ ├── PaymentServiceTests.cs │ │ └── TestPaymentMethod.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Search │ │ └── LinqCatalogSearchServiceTests.cs │ ├── Security │ │ ├── EncryptionServiceTests.cs │ │ └── PermissionServiceTests.cs │ ├── Seo │ │ └── SeoExtensionsTests.cs │ ├── ServiceTest.cs │ ├── Shipping │ │ ├── FixedRateTestShippingRateComputationMethod.cs │ │ └── ShippingServiceTests.cs │ ├── SmartStore.Services.Tests.csproj │ ├── Tax │ │ ├── FixedRateTestTaxProvider.cs │ │ └── TaxServiceTests.cs │ └── packages.config ├── SmartStore.Tests │ ├── App.config │ ├── AttributeExtensions.cs │ ├── Chronometer.cs │ ├── ExceptionAssert.cs │ ├── MemoryRepository.cs │ ├── MockCommonServices.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SmartStore.Tests.csproj │ ├── TestDbSet.cs │ ├── TestExtensions.cs │ ├── TestsBase.cs │ ├── TypeAssert.cs │ └── packages.config └── SmartStore.Web.MVC.Tests │ ├── Admin │ ├── Controllers │ │ └── CategoryControllerTests.cs │ └── Readme.txt │ ├── App.config │ ├── Events │ └── DateTimeConsumer.cs │ ├── Framework │ ├── Controllers │ │ ├── AdminAuthorizeAttributeTests.cs │ │ ├── FormValueRequiredTests.cs │ │ └── RewriteUrlAttributeTests.cs │ ├── Readme.txt │ ├── Templating │ │ └── LiquidTemplateTests.cs │ └── WebApi │ │ └── WebApiTests.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Public │ ├── Infrastructure │ │ ├── RouteTestingExtensions.cs │ │ ├── RoutesTests.cs │ │ └── RoutesTestsBase.cs │ ├── Models │ │ ├── News │ │ │ └── HomePageNewsItemsModelTests.cs │ │ └── Polls │ │ │ └── PollModelTests.cs │ ├── Readme.txt │ └── Validators │ │ ├── BaseValidatorTests.cs │ │ ├── Blogs │ │ └── BlogPostValidatorTests.cs │ │ ├── Boards │ │ ├── EditForumPostValidatorTests.cs │ │ └── EditForumTopicValidatorTests.cs │ │ ├── Catalog │ │ ├── ProductEmailAFriendValidatorTests.cs │ │ └── ProductReviewsValidatorTests.cs │ │ ├── Common │ │ ├── AddressValidatorTests.cs │ │ └── ContactUsValidatorTests.cs │ │ ├── CreditCardValidatorTests.cs │ │ ├── Customer │ │ ├── ChangePasswordValidatorTests.cs │ │ ├── CustomerInfoValidatorTests.cs │ │ ├── PasswordRecoveryConfirmValidatorTests.cs │ │ ├── PasswordRecoveryValidatorTests.cs │ │ └── RegisterValidatorTests.cs │ │ ├── Install │ │ └── InstallValidatorTests.cs │ │ ├── Person.cs │ │ ├── PrivateMessages │ │ └── SendPrivateMessageValidatorTests.cs │ │ ├── ShoppingCart │ │ └── WishlistEmailAFriendValidatorTests.cs │ │ └── TestValidator.cs │ ├── SmartStore.Web.MVC.Tests.csproj │ └── packages.config └── Tools ├── SmartStore.Packager ├── App.config ├── ExtensionInfo.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PackageCreator.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RootedVirtualPathProvider.cs └── SmartStore.Packager.csproj ├── SmartStore.VS.Extensions └── SmartStore.VSIXProject.vsix ├── SmartStore.WebApi.Client.JavaScript ├── CryptoJs │ ├── components │ │ ├── core-min.js │ │ ├── enc-base64-min.js │ │ └── enc-utf16-min.js │ └── rollups │ │ ├── hmac-md5.js │ │ └── hmac-sha256.js ├── favicon.ico ├── index.html ├── smwapi-client.js ├── smwapi-consumer.js ├── spinner.gif └── styles.css └── SmartStore.WebApi.Client ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Misc ├── Extensions.cs └── HourGlass.cs ├── Models ├── ApiFileParameter.cs └── FileUploadModel.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Settings.cs ├── SmartStore.WebApi.Client.csproj ├── WebApi ├── HmacAuthentication.cs ├── WebApiConsumer.cs ├── WebApiConsumerResponse.cs ├── WebApiCore.cs └── WebApiExtensions.cs └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /ClickToBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/ClickToBuild.cmd -------------------------------------------------------------------------------- /ClickToTest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/ClickToTest.cmd -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/README.md -------------------------------------------------------------------------------- /SmartStoreNET.Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/SmartStoreNET.Tasks.Targets -------------------------------------------------------------------------------- /SmartStoreNET.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/SmartStoreNET.proj -------------------------------------------------------------------------------- /assets/ready.set.go.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/assets/ready.set.go.jpg -------------------------------------------------------------------------------- /assets/sm4-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/assets/sm4-devices.png -------------------------------------------------------------------------------- /assets/smartstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/assets/smartstore-icon.png -------------------------------------------------------------------------------- /assets/smartstore-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/assets/smartstore-text.png -------------------------------------------------------------------------------- /assets/smnet3-devices-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/assets/smnet3-devices-sm.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/changelog.md -------------------------------------------------------------------------------- /how-to-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/how-to-build.txt -------------------------------------------------------------------------------- /lib/Facebook/Facebook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/Facebook/Facebook.dll -------------------------------------------------------------------------------- /lib/GCheckout2.5.0.5a/GCheckout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/GCheckout2.5.0.5a/GCheckout.dll -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/Interop.COMAdmin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/Interop.COMAdmin.dll -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/Interop.IWshRuntimeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/Interop.IWshRuntimeLibrary.dll -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/Ionic.Zip.dll -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/MSBuild.ExtensionPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/MSBuild.ExtensionPack.dll -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/MSBuild.ExtensionPack.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/MSBuild.ExtensionPack.dll.config -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/MSBuild.ExtensionPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/MSBuild.ExtensionPack.pdb -------------------------------------------------------------------------------- /lib/MSBuild/Extensions/MSBuild.ExtensionPack.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/Extensions/MSBuild.ExtensionPack.tasks -------------------------------------------------------------------------------- /lib/MSBuild/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /lib/MSBuild/MSBuild.Community.Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/MSBuild.Community.Tasks.Targets -------------------------------------------------------------------------------- /lib/MSBuild/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/MSBuild/MSBuild.Community.Tasks.dll -------------------------------------------------------------------------------- /lib/PerceptiveMCAPI/CookComputing.XmlRpcV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/PerceptiveMCAPI/CookComputing.XmlRpcV2.dll -------------------------------------------------------------------------------- /lib/PerceptiveMCAPI/PerceptiveMCAPI.Export.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/PerceptiveMCAPI/PerceptiveMCAPI.Export.dll -------------------------------------------------------------------------------- /lib/PerceptiveMCAPI/PerceptiveMCAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/PerceptiveMCAPI/PerceptiveMCAPI.dll -------------------------------------------------------------------------------- /lib/SmartStore.Licensing/SmartStore.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/SmartStore.Licensing/SmartStore.Licensing.dll -------------------------------------------------------------------------------- /lib/Telerik/Telerik.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/Telerik/Telerik.Web.Mvc.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-multibyte-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-multibyte-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-private-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-private-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/concrt140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/msvcp140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/ucrtbase.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/vccorlib140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x64/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x64/vcruntime140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-multibyte-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-multibyte-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-private-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-private-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/concrt140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/msvcp140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/ucrtbase.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/vccorlib140.dll -------------------------------------------------------------------------------- /lib/msvcp140/x86/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/msvcp140/x86/vcruntime140.dll -------------------------------------------------------------------------------- /lib/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nuget/nuget.exe -------------------------------------------------------------------------------- /lib/nunit/NUnitFitTests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/NUnitFitTests.html -------------------------------------------------------------------------------- /lib/nunit/NUnitTests.VisualState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/NUnitTests.VisualState.xml -------------------------------------------------------------------------------- /lib/nunit/NUnitTests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/NUnitTests.config -------------------------------------------------------------------------------- /lib/nunit/NUnitTests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/NUnitTests.nunit -------------------------------------------------------------------------------- /lib/nunit/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/agent.conf -------------------------------------------------------------------------------- /lib/nunit/agent.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/agent.log.conf -------------------------------------------------------------------------------- /lib/nunit/clr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/clr.bat -------------------------------------------------------------------------------- /lib/nunit/launcher.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/launcher.log.conf -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Ellipsis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Ellipsis.gif -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Circles/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Circles/Failure.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Circles/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Circles/Ignored.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Circles/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Circles/Inconclusive.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Circles/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Circles/Skipped.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Circles/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Circles/Success.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Classic/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Classic/Failure.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Classic/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Classic/Ignored.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Classic/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Classic/Inconclusive.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Classic/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Classic/Skipped.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Classic/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Classic/Success.jpg -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Default/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Default/Failure.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Default/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Default/Ignored.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Default/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Default/Inconclusive.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Default/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Default/Skipped.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Default/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Default/Success.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/Failure.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/Ignored.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/Inconclusive.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/SeriousWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/SeriousWarning.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/Skipped.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/Tree/Visual Studio/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/Tree/Visual Studio/Success.png -------------------------------------------------------------------------------- /lib/nunit/lib/Images/pinned.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/pinned.gif -------------------------------------------------------------------------------- /lib/nunit/lib/Images/unpinned.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Images/unpinned.gif -------------------------------------------------------------------------------- /lib/nunit/lib/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/NSubstitute.dll -------------------------------------------------------------------------------- /lib/nunit/lib/NSubstitute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/NSubstitute.xml -------------------------------------------------------------------------------- /lib/nunit/lib/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Rhino.Mocks.dll -------------------------------------------------------------------------------- /lib/nunit/lib/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/Rhino.Mocks.xml -------------------------------------------------------------------------------- /lib/nunit/lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/log4net.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit-console-runner.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit-gui-runner.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit.core.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit.uiexception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit.uiexception.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit.uikit.dll -------------------------------------------------------------------------------- /lib/nunit/lib/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/lib/nunit.util.dll -------------------------------------------------------------------------------- /lib/nunit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/license.txt -------------------------------------------------------------------------------- /lib/nunit/nunit-agent-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-agent-x86.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-agent-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-agent-x86.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-agent.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-agent.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit-console-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-console-x86.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-console-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-console-x86.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-console.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-console.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit-editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-editor.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-x86.exe -------------------------------------------------------------------------------- /lib/nunit/nunit-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit-x86.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit.exe -------------------------------------------------------------------------------- /lib/nunit/nunit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit.exe.config -------------------------------------------------------------------------------- /lib/nunit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/nunit.framework.dll -------------------------------------------------------------------------------- /lib/nunit/pnunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit-agent.exe -------------------------------------------------------------------------------- /lib/nunit/pnunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit-agent.exe.config -------------------------------------------------------------------------------- /lib/nunit/pnunit-launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit-launcher.exe -------------------------------------------------------------------------------- /lib/nunit/pnunit-launcher.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit-launcher.exe.config -------------------------------------------------------------------------------- /lib/nunit/pnunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit.framework.dll -------------------------------------------------------------------------------- /lib/nunit/pnunit.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/pnunit.tests.dll -------------------------------------------------------------------------------- /lib/nunit/runFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/runFile.exe -------------------------------------------------------------------------------- /lib/nunit/runFile.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/runFile.exe.config -------------------------------------------------------------------------------- /lib/nunit/runpnunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/runpnunit.bat -------------------------------------------------------------------------------- /lib/nunit/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/nunit/test.conf -------------------------------------------------------------------------------- /lib/sqlce/MICROSOFT VISUAL C++ 2008 EXPRESS EDITION ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/MICROSOFT VISUAL C++ 2008 EXPRESS EDITION ENU.txt -------------------------------------------------------------------------------- /lib/sqlce/REDIST_ENU.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/REDIST_ENU.TXT -------------------------------------------------------------------------------- /lib/sqlce/ReadmeSSCE_ENU.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/ReadmeSSCE_ENU.htm -------------------------------------------------------------------------------- /lib/sqlce/SQLCE_EULA_ENU.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/SQLCE_EULA_ENU.rtf -------------------------------------------------------------------------------- /lib/sqlce/System.Data.SqlServerCe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/System.Data.SqlServerCe.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /lib/sqlce/x64/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlceca40.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlcecompact40.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlceer40EN.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlceme40.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlceqp40.dll -------------------------------------------------------------------------------- /lib/sqlce/x64/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x64/sqlcese40.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/Microsoft.VC90.CRT/README_ENU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/Microsoft.VC90.CRT/README_ENU.txt -------------------------------------------------------------------------------- /lib/sqlce/x86/Microsoft.VC90.CRT/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/Microsoft.VC90.CRT/msvcr90.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlceca40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlceca40.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlcecompact40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlcecompact40.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlceer40EN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlceer40EN.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlceme40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlceme40.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlceqp40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlceqp40.dll -------------------------------------------------------------------------------- /lib/sqlce/x86/sqlcese40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/sqlce/x86/sqlcese40.dll -------------------------------------------------------------------------------- /lib/vswhere/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/lib/vswhere/vswhere.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/AssemblySharedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/AssemblySharedInfo.cs -------------------------------------------------------------------------------- /src/AssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/AssemblyVersionInfo.cs -------------------------------------------------------------------------------- /src/FixRazorIntellisense.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/FixRazorIntellisense.targets -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Async/AsyncRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Async/AsyncRunner.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Async/AsyncStateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Async/AsyncStateInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Async/IAsyncState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Async/IAsyncState.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Async/LocalAsyncState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Async/LocalAsyncState.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/BaseEntity.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/CacheScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/CacheScope.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/CacheScopeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/CacheScopeAccessor.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/ICacheManager.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/IRequestCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/IRequestCache.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/ISet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/ISet.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/MemoryCacheManager.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/MemorySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/MemorySet.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/NullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/NullCache.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Caching/RequestCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Caching/RequestCache.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/LazyMultimap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/LazyMultimap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/MultiMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/Querystring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/Querystring.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/TreeNode.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/TreeNodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/TreeNodeBase.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Collections/TrimmedBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Collections/TrimmedBuffer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ComponentModel/FastInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ComponentModel/FastInvoker.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ComponentModel/IMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ComponentModel/IMapper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ComponentModel/MiniMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ComponentModel/MiniMapper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ComponentModel/PropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ComponentModel/PropertyBag.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Configuration/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Configuration/ISettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/DataProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/DataProviderFactory.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/DataSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/DataSettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/DbContextScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/DbContextScope.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/DbQuerySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/DbQuerySettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/EntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/EntityState.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/Hooks/DbSaveHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/Hooks/DbSaveHook.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/Hooks/HookMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/Hooks/HookMetadata.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/Hooks/HookedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/Hooks/HookedEntity.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/Hooks/IDbHookHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/Hooks/IDbHookHandler.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/Hooks/IDbSaveHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/Hooks/IDbSaveHook.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/IDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/IDataProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/IDbContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/IDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/IDbContextExtensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/IQueryableExtensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/IRepository.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/ITransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/ITransaction.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/RepositoryExtensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Data/SqlFileTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Data/SqlFileTokenizer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Blogs/BlogComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Blogs/BlogComment.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Blogs/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Blogs/BlogPost.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Blogs/BlogPostTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Blogs/BlogPostTag.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Blogs/BlogSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Blogs/BlogSettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/Category.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/PriceRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/PriceRange.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/Product.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/ProductTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/ProductTag.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/ProductType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/ProductType.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Catalog/TierPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Catalog/TierPrice.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Cms/MenuRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Cms/MenuRecord.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Common/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Common/Address.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Forums/Forum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Forums/Forum.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Forums/ForumPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Forums/ForumPost.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Logging/Log.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/Download.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/Enums.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/IHasMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/IHasMedia.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/MediaAlbum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/MediaAlbum.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/MediaFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/MediaFile.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/MediaTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/MediaTag.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Media/MediaTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Media/MediaTrack.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Messages/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Messages/Events.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/News/NewsComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/News/NewsComment.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/News/NewsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/News/NewsItem.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Orders/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Orders/Events.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Orders/GiftCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Orders/GiftCard.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Orders/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Orders/Order.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Orders/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Orders/OrderItem.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Orders/OrderNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Orders/OrderNote.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Polls/Poll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Polls/Poll.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Polls/PollAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Polls/PollAnswer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Seo/SeoSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Seo/SeoSettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Seo/UrlRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Seo/UrlRecord.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Stores/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Stores/Store.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Tax/TaxBasedOn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Tax/TaxBasedOn.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Tax/TaxCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Tax/TaxCategory.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Tax/TaxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Tax/TaxSettings.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Domain/Topics/Topic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Domain/Topics/Topic.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Email/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Email/EmailAddress.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Email/EmailException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Email/EmailException.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Email/EmailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Email/EmailMessage.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Email/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Email/IEmailSender.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Email/SmtpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Email/SmtpContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Events/ConsumeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Events/ConsumeContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Events/ConsumerInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Events/ConsumerInvoker.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Events/IConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Events/IConsumer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Events/IConsumerInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Events/IConsumerInvoker.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Events/IEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Events/IEventPublisher.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Extensions/IOExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Extensions/IOExtensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/Extensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeController.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeHttpContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeHttpHandler.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeHttpRequest.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeHttpResponse.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakeIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakeIdentity.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Fakes/FakePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Fakes/FakePrincipal.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/GenericEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/GenericEqualityComparer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Html/BBCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Html/BBCodeHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Html/HtmlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Html/HtmlUtils.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Html/ResolveLinksHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Html/ResolveLinksHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/HttpSecurityMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/HttpSecurityMode.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IActivatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IActivatable.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IAuditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IAuditable.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IHideObjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IHideObjectMembers.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IMergedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IMergedData.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/DirectoryHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/DirectoryHasher.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/IFile.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/IFileSystem.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/IFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/IFolder.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/ImageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/ImageHeader.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/LocalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/LocalFileSystem.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/LockFile/ILockFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/LockFile/ILockFile.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/LockFile/LockFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/LockFile/LockFile.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/MimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/MimeTypes.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IO/SymLink/SymbolicLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IO/SymLink/SymbolicLink.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IPageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IPageable.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ISoftDeletable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ISoftDeletable.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IStoreContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IStoreContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/ITransient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/ITransient.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IWebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IWebHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/IWorkContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/IWorkContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Infrastructure/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Infrastructure/Error.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Infrastructure/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Infrastructure/Guard.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Infrastructure/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Infrastructure/IEngine.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Infrastructure/IOrdered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Infrastructure/IOrdered.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Linq/ExpressionStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Linq/ExpressionStarter.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Linq/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Linq/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Localization/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Localization/Localizer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/IChronometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/IChronometer.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/ILoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/ILoggerFactory.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/LoggingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/LoggingModule.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/Notifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/Notifier.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/NotifyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/NotifyEntry.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Logging/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Logging/TraceLogger.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Money.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Packaging/FolderUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Packaging/FolderUpdater.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Packaging/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Packaging/PackageInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Packaging/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Packaging/Readme.txt -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/PagedList.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/PagedList`T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/PagedList`T.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/IConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/IConfigurable.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/IPluginFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/IPluginFinder.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/PluginFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/PluginFinder.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Plugins/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Plugins/PluginManager.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/RouteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/RouteInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/Domain/RuleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/Domain/RuleEntity.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/IRuleConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/IRuleConstraint.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/IRuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/IRuleProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/IRuleVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/IRuleVisitor.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleDescriptor.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleExpression.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleFactory.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleModule.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleOperator.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleScope.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleStorage.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Rules/RuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Rules/RuleType.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/Facets/Facet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/Facets/Facet.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IIndexDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IIndexDocument.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IIndexManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IIndexManager.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IIndexOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IIndexOperation.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IIndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IIndexProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IIndexStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IIndexStore.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/ISearchAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/ISearchAlias.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/ISearchEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/ISearchEngine.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/ISearchHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/ISearchHit.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/ISearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/ISearchQuery.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IndexDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IndexDocument.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IndexField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IndexField.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/IndexInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/IndexInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/NullIndexStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/NullIndexStore.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/SearchEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/SearchEnums.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/SearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/SearchQuery.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Search/SearchSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Search/SearchSort.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Security/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Security/Permissions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/SmartException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/SmartException.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/SmartStore.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/SmartStore.Core.csproj -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/SmartStoreVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/SmartStoreVersion.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Templating/ITemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Templating/ITemplate.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Themes/IThemeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Themes/IThemeContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Themes/IThemeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Themes/IThemeRegistry.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Themes/ThemeFolderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Themes/ThemeFolderData.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Themes/ThemeManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Themes/ThemeManifest.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/CommonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/CommonHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/ImagingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/ImagingHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Inflector.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/ObjectDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/ObjectDumper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/PathHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Prettifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Prettifier.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Range.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Retry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Retry.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/SeoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/SeoHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Throttle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Throttle.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/TypeHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/Utilities/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/Utilities/Wildcard.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/WebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/WebHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/XmlHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/app.config -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Core/packages.config -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/CachingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/CachingCommand.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/Credits.txt -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/DbCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/DbCacheEntry.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/DbCacheUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/DbCacheUtil.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/DbCachingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/DbCachingPolicy.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/EfDbCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/EfDbCache.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/EfDbModelStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/EfDbModelStore.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/IDbCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/IDbCache.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Caching/QueryRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Caching/QueryRegistrar.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/EfDataProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/EfDataProviderFactory.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/EfRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/EfRepository.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/IEfDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/IEfDataProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Forums/ForumMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Forums/ForumMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Logging/LogMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Logging/LogMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Orders/OrderMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Orders/OrderMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Polls/PollMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Polls/PollMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Stores/StoreMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Stores/StoreMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Mapping/Topics/TopicMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Mapping/Topics/TopicMap.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/ObjectContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/ObjectContextBase.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Setup/DbSeedingMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Setup/DbSeedingMigrator.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Setup/IDataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Setup/IDataSeeder.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Setup/MigratorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Setup/MigratorUtils.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/SmartDbConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/SmartDbConfiguration.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/SmartObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/SmartObjectContext.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/SmartStore.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/SmartStore.Data.csproj -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Sql/Indexes.Inverse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Sql/Indexes.Inverse.sql -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Sql/Indexes.SqlServer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Sql/Indexes.SqlServer.sql -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Sql/Indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Sql/Indexes.sql -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Sql/StoredProcedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Sql/StoredProcedures.sql -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/SqlCeDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/SqlCeDataProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/SqlServerDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/SqlServerDataProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Utilities/DataMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Utilities/DataMigrator.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Utilities/FastPager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Utilities/FastPager.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/Utilities/SqlBlobStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/Utilities/SqlBlobStream.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/app.config -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Data/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Data/packages.config -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Blogs/BlogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Blogs/BlogService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Blogs/IBlogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Blogs/IBlogService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cart/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cart/Readme.txt -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cart/Rules/IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cart/Rules/IRule.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/Blocks/IBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/Blocks/IBlock.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/ILinkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/ILinkResolver.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/IWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/IWidget.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/IWidgetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/IWidgetService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/LinkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/LinkResolver.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/Menus/MenuInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/Menus/MenuInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Cms/WidgetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Cms/WidgetService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Common/IUserAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Common/IUserAgent.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/CommonServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/CommonServices.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Customers/GdprTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Customers/GdprTool.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Customers/IGdprTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Customers/IGdprTool.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Events/IMessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Events/IMessageBus.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Forums/ForumService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Forums/ForumService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Hooks/AclEntityHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Hooks/AclEntityHook.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Hooks/AuditableHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Hooks/AuditableHook.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Hooks/StoreSaveHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Hooks/StoreSaveHook.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/ICommonServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/ICommonServices.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/IScopedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/IScopedService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Logging/ILogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Logging/ILogService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/Events.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/IMediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/IMediaService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/MediaFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/MediaFileInfo.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/MediaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/MediaHelper.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/MediaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/MediaModule.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/MediaPathData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/MediaPathData.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Media/MediaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Media/MediaService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Messages/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Messages/Events.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Messages/IModelPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Messages/IModelPart.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/News/INewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/News/INewsService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/News/NewsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/News/NewsService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Orders/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Orders/OrderService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Pdf/IPdfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Pdf/IPdfConverter.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Pdf/PdfPageMargins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Pdf/PdfPageMargins.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Pdf/PdfPageSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Pdf/PdfPageSize.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Polls/IPollService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Polls/IPollService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Polls/PollService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Polls/PollService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/ScopedServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/ScopedServiceBase.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Security/AclService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Security/AclService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Seo/NamedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Seo/NamedEntity.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Seo/SeoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Seo/SeoExtensions.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Seo/XmlSitemapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Seo/XmlSitemapNode.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/ServiceCacheBuster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/ServiceCacheBuster.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Stores/StoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Stores/StoreService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tasks/ITask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tasks/ITask.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tasks/ITaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tasks/ITaskExecutor.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tasks/TaskExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tasks/TaskExecutor.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tasks/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tasks/TaskScheduler.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tax/FreeTaxProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tax/FreeTaxProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tax/ITaxProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tax/ITaxProvider.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tax/ITaxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tax/ITaxService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Tax/TaxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Tax/TaxService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/Topics/TopicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/Topics/TopicService.cs -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/app.config -------------------------------------------------------------------------------- /src/Libraries/SmartStore.Services/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Libraries/SmartStore.Services/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/AmazonPaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/AmazonPaySettings.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Content/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Content/branding.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Events/EventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Events/EventConsumer.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Plugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/changelog.md -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.AmazonPay/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.AmazonPay/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/AdminMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/AdminMenu.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/ClickatellSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/ClickatellSettings.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/Content/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/Content/branding.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Clickatell/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Clickatell/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/AdminMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/AdminMenu.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Blocks/SampleBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Blocks/SampleBlock.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/DevToolsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/DevToolsPlugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Events/CustomTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Events/CustomTab.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/ProfilerHttpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/ProfilerHttpModule.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Starter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Starter.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.DevTools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.DevTools/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/Models/LoginModel.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.FacebookAuth/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.FacebookAuth/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleAnalytics/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleAnalytics/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleMerchantCenter/AdminMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleMerchantCenter/AdminMenu.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleMerchantCenter/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleMerchantCenter/Events.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleMerchantCenter/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleMerchantCenter/changelog.md -------------------------------------------------------------------------------- /src/Plugins/SmartStore.GoogleMerchantCenter/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.GoogleMerchantCenter/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/Plugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/changelog.md -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.OfflinePayment/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.OfflinePayment/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Content/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Content/branding.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Content/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Content/favicon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Content/instalments-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Content/instalments-sm.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Content/instalments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Content/instalments.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Filters/PayPalFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Filters/PayPalFilter.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Plugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Services/IPayPalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Services/IPayPalService.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Services/PayPalEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Services/PayPalEnums.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Services/PayPalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Services/PayPalService.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Settings/PayPalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Settings/PayPalSettings.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/SmartStore.PayPal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/SmartStore.PayPal.csproj -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/changelog.md -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.PayPal/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.PayPal/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Data/ByTotalRecordMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Data/ByTotalRecordMap.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Models/ByTotalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Models/ByTotalModel.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Models/FixedRateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Models/FixedRateModel.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Plugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Shipping/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Shipping/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.ShippingByWeight/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.ShippingByWeight/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Data/TaxRateMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Data/TaxRateMap.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Data/TaxRateObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Data/TaxRateObjectContext.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Domain/TaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Domain/TaxRate.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Models/FixedTaxRateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Models/FixedTaxRateModel.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Plugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Services/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Services/Extensions.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Services/ITaxRateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Services/ITaxRateService.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Services/TaxRateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Services/TaxRateService.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/SmartStore.Tax.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/SmartStore.Tax.csproj -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.Tax/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.Tax/web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Content/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Content/icon.png -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/DependencyRegistrar.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Description.txt -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Models/Api/UploadImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Models/Api/UploadImage.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Models/OData/OrderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Models/OData/OrderInfo.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Models/WebApiUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Models/WebApiUserModel.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/RouteProvider.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Scripts/smwapi-consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Scripts/smwapi-consumer.js -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Scripts/swagger-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Scripts/swagger-auth.js -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/SmartStore.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/SmartStore.WebApi.csproj -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/Views/Web.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/WebApiPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/WebApiPlugin.cs -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/packages.config -------------------------------------------------------------------------------- /src/Plugins/SmartStore.WebApi/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Plugins/SmartStore.WebApi/web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web.Framework/UI/Spacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web.Framework/UI/Spacing.cs -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web.Framework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web.Framework/app.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/404.html -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/500.html -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_Data/Geo/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Database and Contents Copyright (c) 2020 DB-IP, Eris Networks S.A.S 2 | https://db-ip.com/ 3 | -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_Data/Geo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/App_Data/Geo/LICENSE.txt -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_Data/Localization/App/de/head.txt: -------------------------------------------------------------------------------- 1 | 202112171231491_V420Resources -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_Data/Localization/App/en/head.txt: -------------------------------------------------------------------------------- 1 | 202112171231491_V420Resources -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_Data/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/App_Data/icons.json -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_GlobalResources/EditorLocalization.de.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_GlobalResources/GridLocalization.de.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/App_GlobalResources/MvcLocalization.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Config/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Config/Web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Config/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Config/log4net.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/Images/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/Images/sad.png -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/Web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/placeholder.txt: -------------------------------------------------------------------------------- 1 | placeholder file -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/print-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/print-rtl.css -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/print.css -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/shared/_bg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/shared/_bg.scss -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/shared/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/shared/_box.scss -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/shared/_fa.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/shared/_fa.scss -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/shared/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/shared/_nav.scss -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Content/shared/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Content/shared/_rtl.scss -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Exchange/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Global.asax -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Refresh.html -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Scripts/_references.js -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Scripts/public.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Scripts/public.common.js -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Scripts/public.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Scripts/public.search.js -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Scripts/public.voting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Scripts/public.voting.js -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/SmartStore.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/SmartStore.Web.csproj -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Themes/Flex/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Themes/Flex/preview.png -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Themes/Flex/theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Themes/Flex/theme.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Themes/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Themes/Web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Views/Blog/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Views/Blog/List.cshtml -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Views/News/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Views/News/List.cshtml -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Views/Web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Web.EFMigrations.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Web.EFMigrations.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Web.PluginDev.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Web.PluginDev.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Web.Release.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/Web.config -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/favicon.ico -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/license.txt -------------------------------------------------------------------------------- /src/Presentation/SmartStore.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Presentation/SmartStore.Web/packages.config -------------------------------------------------------------------------------- /src/SmartStoreNET.Minimal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/SmartStoreNET.Minimal.sln -------------------------------------------------------------------------------- /src/SmartStoreNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/SmartStoreNET.sln -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/App.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/ConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/ConversionTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/Data/Hooks/FakeHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/Data/Hooks/FakeHooks.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/ExtensionsTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/Fakes/FakeTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/Fakes/FakeTypeFinder.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/FastPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/FastPropertyTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/Files/testdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/Files/testdata.html -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/MiniMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/MiniMapperTest.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/PerformanceTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/TopologicSortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/TopologicSortTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/TypeFindingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/TypeFindingBase.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/WebHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/WebHelperTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/WildcardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/WildcardTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Core.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Core.Tests/packages.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/App.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/GlobalSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/GlobalSetup.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/PersistenceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/PersistenceTest.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/SchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/SchemaTests.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/TestDbConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/TestDbConfiguration.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Data.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Data.Tests/packages.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Services.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Services.Tests/App.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Services.Tests/ServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Services.Tests/ServiceTest.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Services.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Services.Tests/packages.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/App.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/AttributeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/AttributeExtensions.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/Chronometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/Chronometer.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/ExceptionAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/ExceptionAssert.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/MemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/MemoryRepository.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/MockCommonServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/MockCommonServices.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/SmartStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/SmartStore.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/TestDbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/TestDbSet.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/TestExtensions.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/TestsBase.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/TypeAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/TypeAssert.cs -------------------------------------------------------------------------------- /src/Tests/SmartStore.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Tests/packages.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Web.MVC.Tests/Admin/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Web.MVC.Tests/Admin/Readme.txt -------------------------------------------------------------------------------- /src/Tests/SmartStore.Web.MVC.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Web.MVC.Tests/App.config -------------------------------------------------------------------------------- /src/Tests/SmartStore.Web.MVC.Tests/Framework/Readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains tests for SmartStore.Web.Framework project -------------------------------------------------------------------------------- /src/Tests/SmartStore.Web.MVC.Tests/Public/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Web.MVC.Tests/Public/Readme.txt -------------------------------------------------------------------------------- /src/Tests/SmartStore.Web.MVC.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tests/SmartStore.Web.MVC.Tests/packages.config -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/App.config -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/ExtensionInfo.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/MainForm.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/MainForm.resx -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/PackageCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/PackageCreator.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/Program.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tools/SmartStore.Packager/SmartStore.Packager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.Packager/SmartStore.Packager.csproj -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client.JavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client.JavaScript/index.html -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client.JavaScript/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client.JavaScript/styles.css -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/App.config -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/MainForm.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/MainForm.resx -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/Misc/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/Misc/Extensions.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/Misc/HourGlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/Misc/HourGlass.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/Program.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/Settings.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/WebApi/WebApiCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/WebApi/WebApiCore.cs -------------------------------------------------------------------------------- /src/Tools/SmartStore.WebApi.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartstore/SmartStoreNET/HEAD/src/Tools/SmartStore.WebApi.Client/packages.config --------------------------------------------------------------------------------