├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config └── nuget.exe ├── Globals ├── AuthorInfo.cs └── Wlitsoft.Framework.snk ├── LICENSE ├── README.md ├── Wlitsoft.Framework.Common.sln ├── appveyor.yml ├── src ├── Common.Logger.Log4Net │ ├── AppBuilderExtension.cs │ ├── Common.Logger.Log4Net.csproj │ ├── Globals │ │ ├── VersionInfo.cs │ │ └── Wlitsoft.Framework.snk │ ├── Log4NetLogger.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Common.Serializer.JsonNet │ ├── Common.Serializer.JsonNet.csproj │ ├── Globals │ │ ├── VersionInfo.cs │ │ └── Wlitsoft.Framework.snk │ ├── JsonNetJsonSerializer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Common │ ├── App.cs │ ├── AppBuilder.cs │ ├── Common.csproj │ ├── Core │ │ ├── IDistributedCache.cs │ │ ├── ILog.cs │ │ ├── ISerializer.cs │ │ └── SerializeType.cs │ ├── Exception │ │ ├── ObjectNullException.cs │ │ └── StringNullOrEmptyException.cs │ ├── Extension │ │ ├── DateTimeExtension.cs │ │ ├── EnumExtension.cs │ │ ├── HttpResponseMessageExtension.cs │ │ ├── LongExtension.cs │ │ ├── ObjectExtension.cs │ │ └── StringExtension.cs │ ├── Globals │ │ ├── VersionInfo.cs │ │ └── Wlitsoft.Framework.snk │ ├── Log │ │ ├── EmptyLogger.cs │ │ └── LoggerSerivce.cs │ ├── Net │ │ ├── HttpPostDataDictionary.cs │ │ ├── HttpPostDataType.cs │ │ └── HttpReqeustClient.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resource.Designer.cs │ │ └── Resource.resx │ ├── Security │ │ ├── ParamsSigner.cs │ │ └── StringEncrypt.cs │ └── Serialize │ │ ├── Dynamic │ │ ├── DynamicJson.cs │ │ └── DynamicXml.cs │ │ ├── JsonSerializer.cs │ │ ├── SerializerService.cs │ │ ├── XmlCDATAElement.cs │ │ └── XmlSerializer.cs └── NuGet │ ├── Common.Logger.Log4Net │ └── Common.Logger.Log4Net.nuspec │ ├── Common.Serializer.JsonNet │ └── Common.Serializer.JsonNet.nuspec │ └── Common │ └── Common.nuspec └── test ├── Common.Logger.Log4Net.Test ├── AppBuilderExtensionTest.cs ├── Common.Logger.Log4Net.Test.csproj ├── Conf │ └── log4net.conf ├── Log4NetLoggerTest.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Common.Serializer.JsonNet.Test ├── Common.Serializer.JsonNet.Test.csproj ├── JsonNetJsonSerializerTest.cs ├── Model │ └── PersonModel.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config └── Common.Test ├── Common.Test.csproj ├── Extension ├── DateTimeExtensionTest.cs ├── EnumExtensionTest.cs ├── LongExtensionTest.cs ├── ObjectExtensionTest.cs └── StringExtensionTest.cs ├── Log └── LoggerServiceTest.cs ├── Model └── PersonModel.cs ├── Net └── HttpReqeustClientTest.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── TextFile.txt ├── Security └── ParamsSignerTest.cs ├── Serialize ├── Dynamic │ ├── DynamicJsonTest.cs │ └── DynamicXmlTest.cs ├── JsonSerializerTest.cs ├── SerializerFactoryTest.cs ├── XmlCDATAElementTest.cs └── XmlSerializerTest.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/.nuget/nuget.exe -------------------------------------------------------------------------------- /Globals/AuthorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/Globals/AuthorInfo.cs -------------------------------------------------------------------------------- /Globals/Wlitsoft.Framework.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/Globals/Wlitsoft.Framework.snk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/README.md -------------------------------------------------------------------------------- /Wlitsoft.Framework.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/Wlitsoft.Framework.Common.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/AppBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/AppBuilderExtension.cs -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/Common.Logger.Log4Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/Common.Logger.Log4Net.csproj -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/Globals/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/Globals/VersionInfo.cs -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/Globals/Wlitsoft.Framework.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/Globals/Wlitsoft.Framework.snk -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/Log4NetLogger.cs -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common.Logger.Log4Net/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Logger.Log4Net/packages.config -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/Common.Serializer.JsonNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/Common.Serializer.JsonNet.csproj -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/Globals/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/Globals/VersionInfo.cs -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/Globals/Wlitsoft.Framework.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/Globals/Wlitsoft.Framework.snk -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/JsonNetJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/JsonNetJsonSerializer.cs -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common.Serializer.JsonNet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common.Serializer.JsonNet/packages.config -------------------------------------------------------------------------------- /src/Common/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/App.cs -------------------------------------------------------------------------------- /src/Common/AppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/AppBuilder.cs -------------------------------------------------------------------------------- /src/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Common.csproj -------------------------------------------------------------------------------- /src/Common/Core/IDistributedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Core/IDistributedCache.cs -------------------------------------------------------------------------------- /src/Common/Core/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Core/ILog.cs -------------------------------------------------------------------------------- /src/Common/Core/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Core/ISerializer.cs -------------------------------------------------------------------------------- /src/Common/Core/SerializeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Core/SerializeType.cs -------------------------------------------------------------------------------- /src/Common/Exception/ObjectNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Exception/ObjectNullException.cs -------------------------------------------------------------------------------- /src/Common/Exception/StringNullOrEmptyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Exception/StringNullOrEmptyException.cs -------------------------------------------------------------------------------- /src/Common/Extension/DateTimeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/DateTimeExtension.cs -------------------------------------------------------------------------------- /src/Common/Extension/EnumExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/EnumExtension.cs -------------------------------------------------------------------------------- /src/Common/Extension/HttpResponseMessageExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/HttpResponseMessageExtension.cs -------------------------------------------------------------------------------- /src/Common/Extension/LongExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/LongExtension.cs -------------------------------------------------------------------------------- /src/Common/Extension/ObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/ObjectExtension.cs -------------------------------------------------------------------------------- /src/Common/Extension/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Extension/StringExtension.cs -------------------------------------------------------------------------------- /src/Common/Globals/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Globals/VersionInfo.cs -------------------------------------------------------------------------------- /src/Common/Globals/Wlitsoft.Framework.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Globals/Wlitsoft.Framework.snk -------------------------------------------------------------------------------- /src/Common/Log/EmptyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Log/EmptyLogger.cs -------------------------------------------------------------------------------- /src/Common/Log/LoggerSerivce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Log/LoggerSerivce.cs -------------------------------------------------------------------------------- /src/Common/Net/HttpPostDataDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Net/HttpPostDataDictionary.cs -------------------------------------------------------------------------------- /src/Common/Net/HttpPostDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Net/HttpPostDataType.cs -------------------------------------------------------------------------------- /src/Common/Net/HttpReqeustClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Net/HttpReqeustClient.cs -------------------------------------------------------------------------------- /src/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common/Properties/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Properties/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Common/Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Properties/Resource.resx -------------------------------------------------------------------------------- /src/Common/Security/ParamsSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Security/ParamsSigner.cs -------------------------------------------------------------------------------- /src/Common/Security/StringEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Security/StringEncrypt.cs -------------------------------------------------------------------------------- /src/Common/Serialize/Dynamic/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/Dynamic/DynamicJson.cs -------------------------------------------------------------------------------- /src/Common/Serialize/Dynamic/DynamicXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/Dynamic/DynamicXml.cs -------------------------------------------------------------------------------- /src/Common/Serialize/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/JsonSerializer.cs -------------------------------------------------------------------------------- /src/Common/Serialize/SerializerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/SerializerService.cs -------------------------------------------------------------------------------- /src/Common/Serialize/XmlCDATAElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/XmlCDATAElement.cs -------------------------------------------------------------------------------- /src/Common/Serialize/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/Common/Serialize/XmlSerializer.cs -------------------------------------------------------------------------------- /src/NuGet/Common.Logger.Log4Net/Common.Logger.Log4Net.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/NuGet/Common.Logger.Log4Net/Common.Logger.Log4Net.nuspec -------------------------------------------------------------------------------- /src/NuGet/Common.Serializer.JsonNet/Common.Serializer.JsonNet.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/NuGet/Common.Serializer.JsonNet/Common.Serializer.JsonNet.nuspec -------------------------------------------------------------------------------- /src/NuGet/Common/Common.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/src/NuGet/Common/Common.nuspec -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/AppBuilderExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/AppBuilderExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/Common.Logger.Log4Net.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/Common.Logger.Log4Net.Test.csproj -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/Conf/log4net.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/Conf/log4net.conf -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/Log4NetLoggerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/Log4NetLoggerTest.cs -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Common.Logger.Log4Net.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Logger.Log4Net.Test/packages.config -------------------------------------------------------------------------------- /test/Common.Serializer.JsonNet.Test/Common.Serializer.JsonNet.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Serializer.JsonNet.Test/Common.Serializer.JsonNet.Test.csproj -------------------------------------------------------------------------------- /test/Common.Serializer.JsonNet.Test/JsonNetJsonSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Serializer.JsonNet.Test/JsonNetJsonSerializerTest.cs -------------------------------------------------------------------------------- /test/Common.Serializer.JsonNet.Test/Model/PersonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Serializer.JsonNet.Test/Model/PersonModel.cs -------------------------------------------------------------------------------- /test/Common.Serializer.JsonNet.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Serializer.JsonNet.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Common.Serializer.JsonNet.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Serializer.JsonNet.Test/packages.config -------------------------------------------------------------------------------- /test/Common.Test/Common.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Common.Test.csproj -------------------------------------------------------------------------------- /test/Common.Test/Extension/DateTimeExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Extension/DateTimeExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Extension/EnumExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Extension/EnumExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Extension/LongExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Extension/LongExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Extension/ObjectExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Extension/ObjectExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Extension/StringExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Extension/StringExtensionTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Log/LoggerServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Log/LoggerServiceTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Model/PersonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Model/PersonModel.cs -------------------------------------------------------------------------------- /test/Common.Test/Net/HttpReqeustClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Net/HttpReqeustClientTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Common.Test/Resources/TextFile.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /test/Common.Test/Security/ParamsSignerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Security/ParamsSignerTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/Dynamic/DynamicJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/Dynamic/DynamicJsonTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/Dynamic/DynamicXmlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/Dynamic/DynamicXmlTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/JsonSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/JsonSerializerTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/SerializerFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/SerializerFactoryTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/XmlCDATAElementTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/XmlCDATAElementTest.cs -------------------------------------------------------------------------------- /test/Common.Test/Serialize/XmlSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/Serialize/XmlSerializerTest.cs -------------------------------------------------------------------------------- /test/Common.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wlitsoft/Common/HEAD/test/Common.Test/packages.config --------------------------------------------------------------------------------