Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
ZooY committed Nov 13, 2017
1 parent 5e19486 commit 0af761d
Show file tree
Hide file tree
Showing 332 changed files with 2,579 additions and 195 deletions.
Binary file removed NuGet/PZone.SDK.Core.1.0.5.nupkg
Binary file not shown.
Binary file removed NuGet/PZone.SDK.Core.1.0.6.nupkg
Binary file not shown.
Binary file removed NuGet/PZone.SDK.Core.1.0.nupkg
Binary file not shown.
Binary file added NuGet/PZone.SDK.Core.nupkg
Binary file not shown.
7 changes: 6 additions & 1 deletion PZone.SDK.Core.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<DocumentationSource sourceFile="Source\PZone.Core\bin\Release\PZone.Core.dll" />
<DocumentationSource sourceFile="Source\PZone.Core\bin\Release\PZone.Core.xml" />
</DocumentationSources>
<HelpFileVersion>1.0.5</HelpFileVersion>
<HelpFileVersion>1.1.0.0</HelpFileVersion>
<MaximumGroupParts>2</MaximumGroupParts>
<NamespaceGrouping>True</NamespaceGrouping>
<SyntaxFilters>C#</SyntaxFilters>
Expand Down Expand Up @@ -91,4 +91,9 @@
</PostBuildEvent>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json">
<HintPath>Source\PZone.Core\bin\Release\Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
22 changes: 11 additions & 11 deletions Source/PZone.Core/Localization/Labels.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
22 changes: 11 additions & 11 deletions Source/PZone.Core/Localization/Labels.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,36 +118,36 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Century" xml:space="preserve">
<value>Век</value>
<value>Century</value>
</data>
<data name="Day" xml:space="preserve">
<value>День</value>
<value>Day</value>
</data>
<data name="Hour" xml:space="preserve">
<value>Час</value>
<value>Hour</value>
</data>
<data name="Millisecond" xml:space="preserve">
<value>Миллисекунда</value>
<value>Millisecond</value>
</data>
<data name="Minute" xml:space="preserve">
<value>Минута</value>
<value>Minute</value>
</data>
<data name="Month" xml:space="preserve">
<value>Месяц</value>
<value>Month</value>
</data>
<data name="Quarter" xml:space="preserve">
<value>Квартал</value>
<value>Quarter</value>
</data>
<data name="Second" xml:space="preserve">
<value>Секунда</value>
<value>Second</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Неизвестно</value>
<value>Unknown</value>
</data>
<data name="Week" xml:space="preserve">
<value>Неделя</value>
<value>Week</value>
</data>
<data name="Year" xml:space="preserve">
<value>Год</value>
<value>Year</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -118,36 +118,36 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Century" xml:space="preserve">
<value>Century</value>
<value>Век</value>
</data>
<data name="Day" xml:space="preserve">
<value>Day</value>
<value>День</value>
</data>
<data name="Hour" xml:space="preserve">
<value>Hour</value>
<value>Час</value>
</data>
<data name="Millisecond" xml:space="preserve">
<value>Millisecond</value>
<value>Миллисекунда</value>
</data>
<data name="Minute" xml:space="preserve">
<value>Minute</value>
<value>Минута</value>
</data>
<data name="Month" xml:space="preserve">
<value>Month</value>
<value>Месяц</value>
</data>
<data name="Quarter" xml:space="preserve">
<value>Quarter</value>
<value>Квартал</value>
</data>
<data name="Second" xml:space="preserve">
<value>Second</value>
<value>Секунда</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Unknown</value>
<value>Неизвестно</value>
</data>
<data name="Week" xml:space="preserve">
<value>Week</value>
<value>Неделя</value>
</data>
<data name="Year" xml:space="preserve">
<value>Year</value>
<value>Год</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ namespace PZone.Logging
/// <remarks>
/// Журнализатор используется для тестирования и отладки.
/// </remarks>
public class ConsoleLog : LoggerBase
public class ConsoleLogger : LoggerBase
{
/// <summary>
/// Конструтор класса.
/// </summary>
/// <param name="correlationId">Идентификатор для связывания сообщения.</param>
/// <param name="appId">Идентификатор приложения.</param>
/// <param name="appVersion">Версия приложения.</param>
public ConsoleLog(string correlationId, string appId, string appVersion) : base(correlationId, appId, appVersion)
public ConsoleLogger(string correlationId, string appId, string appVersion) : base(correlationId, appId, appVersion)
{
}

Expand Down
11 changes: 3 additions & 8 deletions Source/PZone.Core/PZone.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@
<ItemGroup>
<Compile Include="Collections\IDictionaryExtensions.cs" />
<Compile Include="EnumExtensions.cs" />
<Compile Include="Localization\Labels.en.Designer.cs">
<DependentUpon>Labels.en.resx</DependentUpon>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="Localization\Labels.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
Expand All @@ -73,7 +68,7 @@
<Compile Include="Helpers\NumberHelper.cs" />
<Compile Include="Json\WebExceptionConverter.cs" />
<Compile Include="Logging\EventLogLogger.cs" />
<Compile Include="Logging\ConsoleLog.cs" />
<Compile Include="Logging\ConsoleLogger.cs" />
<Compile Include="Logging\LogLevelExtensions.cs" />
<Compile Include="Logging\LoggerBase.cs" />
<Compile Include="Logging\LogLevel.cs" />
Expand All @@ -94,9 +89,9 @@
<None Include="PZone.snk" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Localization\Labels.en.resx">
<EmbeddedResource Include="Localization\Labels.ru.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Labels.en.Designer.cs</LastGenOutput>
<LastGenOutput>Labels.ru.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="Localization\Labels.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand Down
9 changes: 6 additions & 3 deletions Source/PZone.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -32,5 +33,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.6.0")]
[assembly: AssemblyFileVersion("1.0.6.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: NeutralResourcesLanguage("en")]

Loading

0 comments on commit 0af761d

Please sign in to comment.