StockSharp.Configuration 5.0.218

Prefix Reserved
dotnet add package StockSharp.Configuration --version 5.0.218
                    
NuGet\Install-Package StockSharp.Configuration -Version 5.0.218
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StockSharp.Configuration" Version="5.0.218" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StockSharp.Configuration" Version="5.0.218" />
                    
Directory.Packages.props
<PackageReference Include="StockSharp.Configuration" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StockSharp.Configuration --version 5.0.218
                    
#r "nuget: StockSharp.Configuration, 5.0.218"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package StockSharp.Configuration@5.0.218
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StockSharp.Configuration&version=5.0.218
                    
Install as a Cake Addin
#tool nuget:?package=StockSharp.Configuration&version=5.0.218
                    
Install as a Cake Tool

StockSharp.Configuration

StockSharp.Configuration is a .NET Standard library that centralizes various configuration facilities used by the StockSharp trading platform. It provides classes for storing application paths, loading settings, managing user credentials, and constructing message adapters. The assembly is titled S#.Configuration and described as "Configuration components."

Features

  • System paths – the Paths class defines all important directories and files used by StockSharp. Paths are initialized from PathsHolder and configuration files, as shown below:
    var companyPath = PathsHolder.CompanyPath ?? ConfigManager.TryGet<string>("companyPath");
    CompanyPath = companyPath.IsEmpty() ? Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "StockSharp") : companyPath.ToFullPathIfNeed();
    CredentialsFile = Path.Combine(CompanyPath, $"credentials{DefaultSettingsExt}");
    PlatformConfigurationFile = Path.Combine(AppDataPath, $"platform_config{DefaultSettingsExt}");
    
    【F:Configuration/Paths.cs†L14-L26】
  • Start‑up settingsAppStartSettings stores language preference and online/offline mode and can be loaded or saved from the platform configuration file:
    public class AppStartSettings : IPersistable
    {
        public string Language { get; set; } = LocalizedStrings.ActiveLanguage;
        public bool Online { get; set; } = true;
        public static AppStartSettings TryLoad()
        {
            var configFile = Paths.PlatformConfigurationFile;
            if (configFile.IsEmptyOrWhiteSpace() || !configFile.IsConfigExists())
                return null;
            return configFile.Deserialize<SettingsStorage>()?.Load<AppStartSettings>();
        }
    }
    
    【F:Configuration/AppStartSettings.cs†L4-L41】
  • Credentials management – the ICredentialsProvider interface allows loading, saving and deleting of ServerCredentials. The default implementation persists credentials in Paths.CredentialsFile:
    public interface ICredentialsProvider
    {
        bool TryLoad(out ServerCredentials credentials);
        void Save(ServerCredentials credentials, bool keepSecret);
        void Delete();
    }
    
    【F:Configuration/ICredentialsProvider.cs†L4-L25】
    class DefaultCredentialsProvider : ICredentialsProvider
    {
        private ServerCredentials _credentials;
        bool ICredentialsProvider.TryLoad(out ServerCredentials credentials)
        {
            lock (this)
            {
                if(_credentials != null)
                {
                    credentials = _credentials.Clone();
                    return credentials.CanAutoLogin();
                }
                var file = Paths.CredentialsFile;
                credentials = null;
                if (file.IsConfigExists())
                {
                    credentials = new ServerCredentials();
                    credentials.LoadIfNotNull(file.Deserialize<SettingsStorage>());
                    _credentials = credentials.Clone();
                }
                return credentials?.CanAutoLogin() == true;
            }
        }
    }
    
    【F:Configuration/DefaultCredentialsProvider.cs†L3-L38】
  • Invariant serializationInvariantCultureSerializer saves configuration files using the invariant culture and UTF‑8 encoding, enabling culture‑independent settings:
    public static class InvariantCultureSerializer
    {
        public static void SerializeInvariant(this SettingsStorage settings, string fileName, bool bom = true)
        {
            if (settings is null)
                throw new ArgumentNullException(nameof(settings));
            Do.Invariant(() => settings.Serialize(fileName, bom));
        }
    }
    
    【F:Configuration/InvariantCultureSerializer.cs†L3-L23】
  • Message adapter discoveryInMemoryMessageAdapterProvider scans all local assemblies for IMessageAdapter implementations and can create adapters on demand:
    public class InMemoryMessageAdapterProvider : IMessageAdapterProvider
    {
        public InMemoryMessageAdapterProvider(IEnumerable<IMessageAdapter> currentAdapters, Type transportAdapter = null)
        {
            CurrentAdapters = currentAdapters ?? throw new ArgumentNullException(nameof(currentAdapters));
            var idGenerator = new IncrementalIdGenerator();
            PossibleAdapters = [.. GetAdapters().Select(t =>
            {
                try
                {
                    return t.CreateAdapter(idGenerator);
                }
                catch (Exception ex)
                {
                    ex.LogError();
                    return null;
                }
            }).WhereNotNull()];
        }
    }
    
    【F:Configuration/InMemoryMessageAdapterProvider.cs†L5-L51】
  • Utility helpers – the Paths class also exposes methods for serialization, backup management and building links to StockSharp documentation and store pages.

Usage

  1. Configure global paths before accessing Paths by setting PathsHolder.CompanyPath and PathsHolder.AppDataPath if your application uses custom directories.
  2. Load or create application start settings with AppStartSettings.TryLoad and save them using TrySave.
  3. Implement ICredentialsProvider or use DefaultCredentialsProvider to persist server credentials securely.
  4. Use InvariantCultureSerializer when you need stable serialization irrespective of system locale.
  5. Create an instance of InMemoryMessageAdapterProvider to dynamically discover available message adapters.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on StockSharp.Configuration:

Package Downloads
StockSharp.Algo

Trading algorithms. More info on web site https://stocksharp.com/store/

StockSharp.Licensing

Licensing components. More info on web site https://stocksharp.com/store/

StockSharp.Server.Core

Core server components. More info on web site https://stocksharp.com/store/

StockSharp.UdpDumper.Console

UDP Dumper. Console version

StockSharp.Algo.Compilation

Compilation components. More info on web site https://stocksharp.com/store/

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.218 1,232 9/11/2025
5.0.217 779 9/1/2025
5.0.216 756 8/30/2025
5.0.215 901 8/10/2025
5.0.214 1,200 7/23/2025
5.0.213 1,167 7/20/2025
5.0.212 777 7/14/2025
5.0.211 731 7/8/2025
5.0.210 642 7/4/2025
5.0.209 699 6/30/2025
5.0.208 1,332 6/20/2025
5.0.207 683 6/18/2025
5.0.206 815 6/2/2025
5.0.205 938 5/14/2025
5.0.204 1,514 3/29/2025
5.0.203 665 3/27/2025
5.0.202 1,616 2/26/2025
5.0.201 1,682 2/14/2025
5.0.200 1,827 12/30/2024
5.0.199 1,470 11/18/2024
5.0.198 765 11/16/2024
5.0.197 1,258 10/14/2024
5.0.196 796 10/9/2024
5.0.195 725 10/7/2024
5.0.194 750 10/3/2024
5.0.193 852 9/23/2024
5.0.192 825 9/18/2024
5.0.191 847 9/16/2024
5.0.190 950 9/8/2024
5.0.189 1,268 8/24/2024
5.0.188 1,086 8/9/2024
5.0.187 1,165 8/1/2024
5.0.186 743 7/28/2024
5.0.185 1,104 7/4/2024
5.0.184 1,038 6/23/2024
5.0.183 984 6/13/2024
5.0.182 1,031 5/30/2024
5.0.181 809 5/22/2024
5.0.180 887 5/13/2024
5.0.179 1,114 5/5/2024
5.0.178 845 4/26/2024
5.0.177 863 4/25/2024
5.0.176 964 4/12/2024
5.0.175 1,064 4/4/2024
5.0.174 1,218 3/12/2024
5.0.173 2,032 2/21/2024
5.0.172 1,122 2/14/2024
5.0.171 1,043 2/12/2024
5.0.170 1,232 2/6/2024
5.0.169 1,360 1/31/2024
5.0.168 2,128 1/10/2024
5.0.167 1,564 12/15/2023
5.0.166 1,308 12/8/2023
5.0.165 1,594 11/28/2023
5.0.164 1,220 11/28/2023
5.0.163 2,523 10/8/2023
5.0.162 1,546 9/29/2023
5.0.161 1,573 9/19/2023
5.0.160 740 9/18/2023
5.0.159 2,201 7/30/2023
5.0.158 1,748 7/10/2023
5.0.157 1,543 7/8/2023
5.0.156 1,659 7/5/2023
5.0.155 1,543 6/22/2023
5.0.154 1,710 6/19/2023
5.0.153 2,238 5/14/2023
5.0.152 1,844 5/8/2023
5.0.151 2,192 4/21/2023
5.0.150 2,265 4/17/2023
5.0.149 2,279 4/7/2023
5.0.148 2,255 4/3/2023
5.0.147 3,064 3/6/2023
5.0.146 3,581 2/23/2023
5.0.145 2,885 2/13/2023
5.0.144 3,460 2/9/2023
5.0.143 3,306 2/8/2023
5.0.142 3,575 2/2/2023
5.0.141 3,585 1/30/2023
5.0.140 5,109 1/3/2023
5.0.139 4,133 12/30/2022
5.0.138 4,755 12/12/2022
5.0.137 4,507 12/8/2022
5.0.136 5,361 11/11/2022
5.0.135 19,032 11/1/2022
5.0.134 21,405 10/16/2022
5.0.133 43,156 9/8/2022
5.0.132 43,030 8/29/2022
5.0.131 43,412 8/24/2022
5.0.130 44,109 7/26/2022
5.0.129 43,135 7/19/2022
5.0.128 44,625 5/13/2022
5.0.127 43,045 4/30/2022
5.0.126 8,072 3/29/2022
5.0.125 44,810 3/25/2022
5.0.124 43,819 3/17/2022
5.0.123 43,119 2/15/2022
5.0.122 45,395 2/11/2022
5.0.121 7,946 2/2/2022
5.0.120 7,834 1/28/2022
5.0.119 42,233 1/26/2022
5.0.118 42,576 1/21/2022
5.0.117 42,263 1/21/2022
5.0.116 40,858 1/13/2022
5.0.115 26,566 12/29/2021
5.0.114 26,367 12/20/2021
5.0.113 26,362 12/11/2021
5.0.112 26,350 12/6/2021
5.0.111 28,014 11/29/2021
5.0.110 26,170 11/22/2021
5.0.109 27,207 11/13/2021
5.0.108 29,020 11/8/2021
5.0.107 1,718 11/8/2021
5.0.106 28,893 11/5/2021
5.0.105 29,901 10/21/2021
5.0.104 29,161 10/14/2021
5.0.103 29,184 10/14/2021
5.0.102 1,631 10/13/2021
5.0.101 4,514 10/13/2021
5.0.100 29,565 10/11/2021
5.0.99 30,933 10/8/2021
5.0.98 3,907 10/7/2021
5.0.97 29,738 10/7/2021
5.0.96 1,478 9/27/2021
5.0.95 30,649 9/23/2021
5.0.94 29,110 9/7/2021
5.0.93 30,193 7/31/2021
5.0.92 28,754 7/30/2021
5.0.91 28,388 7/30/2021
5.0.90 28,177 7/19/2021
5.0.89 28,949 7/13/2021
5.0.88 28,734 7/5/2021
5.0.87 30,119 6/16/2021
5.0.86 29,520 6/4/2021
5.0.85 28,991 5/15/2021
5.0.84 29,174 4/30/2021
5.0.83 28,919 4/26/2021
5.0.82 29,268 4/19/2021
5.0.81 28,768 4/16/2021
5.0.80 28,534 4/13/2021
5.0.79 28,397 4/12/2021
5.0.78 28,999 4/8/2021
5.0.77 28,576 4/7/2021
5.0.76 28,400 4/6/2021
5.0.75 28,608 3/29/2021
5.0.74 28,666 3/28/2021
5.0.73 28,905 3/26/2021
5.0.72 28,338 3/26/2021
5.0.71 28,442 3/24/2021
5.0.70 27,182 3/23/2021
5.0.69 27,007 3/18/2021
5.0.68 26,513 3/17/2021
5.0.67 27,085 3/12/2021
5.0.66 26,953 3/4/2021
5.0.65 2,813 3/4/2021
5.0.64 26,939 2/26/2021
5.0.63 27,176 2/17/2021
5.0.62 26,593 2/15/2021
5.0.61 26,408 2/13/2021
5.0.60 26,676 2/12/2021
5.0.59 27,268 2/7/2021
5.0.58 3,098 2/2/2021
5.0.57 2,897 2/2/2021
5.0.56 3,110 1/26/2021
5.0.55 2,989 1/25/2021
5.0.54 2,751 1/25/2021
5.0.53 3,164 1/21/2021
5.0.52 2,818 1/20/2021
5.0.51 2,683 1/19/2021
5.0.50 2,839 1/16/2021
5.0.49 4,687 1/14/2021
5.0.48 5,365 12/29/2020
5.0.47 5,811 12/23/2020
5.0.46 720 12/18/2020
5.0.45 4,923 12/18/2020
5.0.44 1,829 12/17/2020
5.0.43 9,690 12/14/2020
5.0.42 8,058 12/10/2020
5.0.41 5,784 12/1/2020
5.0.40 7,836 11/29/2020
5.0.39 4,537 11/22/2020
5.0.38 4,141 11/22/2020
5.0.38-a7 1,931 11/22/2020
5.0.38-a6 1,873 11/22/2020
5.0.37 5,793 11/13/2020
5.0.36 4,221 10/11/2020
5.0.35 4,721 9/20/2020
5.0.34 3,437 9/18/2020
5.0.33 4,442 9/15/2020
5.0.32 3,500 9/9/2020
5.0.31 3,530 9/3/2020
5.0.30 4,028 8/21/2020
5.0.29 3,937 8/11/2020
5.0.28 3,746 8/10/2020
5.0.27 4,436 8/10/2020
5.0.26 3,627 7/28/2020
5.0.25 3,491 7/19/2020
5.0.24 3,311 7/9/2020
5.0.23 3,255 7/7/2020
5.0.22 3,680 6/10/2020
5.0.21 3,265 6/9/2020
5.0.20 3,327 6/9/2020
5.0.19 3,782 6/4/2020
5.0.18 3,433 6/2/2020
5.0.17 3,455 5/29/2020
5.0.16 3,476 5/25/2020
5.0.15 3,258 5/21/2020
5.0.14 3,390 5/14/2020
5.0.13 3,207 5/12/2020
5.0.12 3,337 5/11/2020
5.0.11 3,334 5/9/2020
5.0.10 3,260 5/5/2020
5.0.9 3,201 5/4/2020
5.0.8 1,600 4/24/2020
5.0.7 1,487 4/22/2020
5.0.6 4,245 4/18/2020
5.0.5 3,229 4/16/2020
5.0.4 2,985 4/15/2020
5.0.3 3,521 4/12/2020
5.0.2 3,243 4/4/2020
5.0.1 3,179 3/27/2020
5.0.0 3,116 3/26/2020