Skip to content

Commit ea2a31a

Browse files
committed
NuGet v1.0.12, console lock fix
1 parent 067efd8 commit ea2a31a

58 files changed

Lines changed: 86 additions & 33 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vs/SyslogLogging/v15/.suo

-512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
479 KB
Binary file not shown.

LoggingModule/LoggingModule.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,7 @@ private bool ConsoleExists()
273273

274274
private void SendToConsole(string msg)
275275
{
276-
if (String.IsNullOrEmpty(msg)) return;
277-
if (Console.CursorLeft != 0) Console.WriteLine("");
276+
if (String.IsNullOrEmpty(msg)) return;
278277
Console.WriteLine(msg);
279278
}
280279

LoggingModule/LoggingModule.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>1.0.11</Version>
6+
<Version>1.0.12</Version>
77
<Authors>Joel Christner</Authors>
88
<PackageId>SyslogLogging</PackageId>
99
<Product>SyslogLogging</Product>
@@ -14,7 +14,7 @@
1414
<RepositoryUrl>https://github.com/jchristn/LoggingModule</RepositoryUrl>
1515
<RepositoryType>Github</RepositoryType>
1616
<PackageLicenseUrl>https://github.com/jchristn/LoggingModule/blob/master/LICENSE.TXT</PackageLicenseUrl>
17-
<PackageReleaseNotes>Icon</PackageReleaseNotes>
17+
<PackageReleaseNotes>Fixed blocking issue on console send</PackageReleaseNotes>
1818
<PackageIconUrl>https://raw.githubusercontent.com/jchristn/loggingmodule/master/assets/logo.ico</PackageIconUrl>
1919
</PropertyGroup>
2020

11.3 KB
Binary file not shown.
0 Bytes
Binary file not shown.
-16 Bytes
Binary file not shown.

LoggingModule/bin/Debug/netstandard2.0/LoggingModule.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETStandard,Version=v2.0": {},
99
".NETStandard,Version=v2.0/": {
10-
"LoggingModule/1.0.11": {
10+
"LoggingModule/1.0.12": {
1111
"dependencies": {
1212
"NETStandard.Library": "2.0.3"
1313
},
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"libraries": {
27-
"LoggingModule/1.0.11": {
27+
"LoggingModule/1.0.12": {
2828
"type": "project",
2929
"serviceable": false,
3030
"sha512": ""
-512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)