Skip to content

Commit

Permalink
NuGet v1.0.12, console lock fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed Jul 6, 2019
1 parent 067efd8 commit ea2a31a
Show file tree
Hide file tree
Showing 58 changed files with 86 additions and 33 deletions.
Binary file modified .vs/SyslogLogging/v15/.suo
Binary file not shown.
Binary file modified .vs/SyslogLogging/v15/Server/sqlite3/storage.ide-shm
Binary file not shown.
Binary file modified .vs/SyslogLogging/v15/Server/sqlite3/storage.ide-wal
Binary file not shown.
3 changes: 1 addition & 2 deletions LoggingModule/LoggingModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,7 @@ private bool ConsoleExists()

private void SendToConsole(string msg)
{
if (String.IsNullOrEmpty(msg)) return;
if (Console.CursorLeft != 0) Console.WriteLine("");
if (String.IsNullOrEmpty(msg)) return;
Console.WriteLine(msg);
}

Expand Down
4 changes: 2 additions & 2 deletions LoggingModule/LoggingModule.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<Authors>Joel Christner</Authors>
<PackageId>SyslogLogging</PackageId>
<Product>SyslogLogging</Product>
Expand All @@ -14,7 +14,7 @@
<RepositoryUrl>https://github.com/jchristn/LoggingModule</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageLicenseUrl>https://github.com/jchristn/LoggingModule/blob/master/LICENSE.TXT</PackageLicenseUrl>
<PackageReleaseNotes>Icon</PackageReleaseNotes>
<PackageReleaseNotes>Fixed blocking issue on console send</PackageReleaseNotes>
<PackageIconUrl>https://raw.githubusercontent.com/jchristn/loggingmodule/master/assets/logo.ico</PackageIconUrl>
</PropertyGroup>

Expand Down
Binary file not shown.
Binary file modified LoggingModule/bin/Debug/net452/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/bin/Debug/net452/LoggingModule.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"LoggingModule/1.0.11": {
"LoggingModule/1.0.12": {
"dependencies": {
"NETStandard.Library": "2.0.3"
},
Expand All @@ -24,7 +24,7 @@
}
},
"libraries": {
"LoggingModule/1.0.11": {
"LoggingModule/1.0.12": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Binary file modified LoggingModule/bin/Debug/netstandard2.0/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/bin/Debug/netstandard2.0/LoggingModule.pdb
Binary file not shown.
Binary file not shown.
Binary file modified LoggingModule/bin/Release/net452/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/bin/Release/net452/LoggingModule.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"targets": {
".NETStandard,Version=v2.0": {},
".NETStandard,Version=v2.0/": {
"LoggingModule/1.0.11": {
"LoggingModule/1.0.12": {
"dependencies": {
"NETStandard.Library": "2.0.3"
},
Expand All @@ -24,7 +24,7 @@
}
},
"libraries": {
"LoggingModule/1.0.11": {
"LoggingModule/1.0.12": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
Binary file modified LoggingModule/bin/Release/netstandard2.0/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/bin/Release/netstandard2.0/LoggingModule.pdb
Binary file not shown.
26 changes: 26 additions & 0 deletions LoggingModule/obj/Debug/SyslogLogging.1.0.12.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SyslogLogging</id>
<version>1.0.12</version>
<authors>Joel Christner</authors>
<owners>Joel Christner</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/jchristn/LoggingModule/blob/master/LICENSE.TXT</licenseUrl>
<projectUrl>https://github.com/jchristn/LoggingModule</projectUrl>
<iconUrl>https://raw.githubusercontent.com/jchristn/loggingmodule/master/assets/logo.ico</iconUrl>
<description>Simple C# class library for logging to syslog and to the console</description>
<releaseNotes>Fixed blocking issue on console send</releaseNotes>
<copyright>(c)2019 Joel Christner</copyright>
<tags>syslog logging console</tags>
<repository type="Github" url="https://github.com/jchristn/LoggingModule" />
<dependencies>
<group targetFramework=".NETFramework4.5.2" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
<files>
<file src="C:\code\misc\SyslogLogging\LoggingModule\bin\Debug\net452\LoggingModule.dll" target="lib\net452\LoggingModule.dll" />
<file src="C:\code\misc\SyslogLogging\LoggingModule\bin\Debug\netstandard2.0\LoggingModule.dll" target="lib\netstandard2.0\LoggingModule.dll" />
</files>
</package>
6 changes: 3 additions & 3 deletions LoggingModule/obj/Debug/net452/LoggingModule.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("(c)2019 Joel Christner")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Simple C# class library for logging to syslog and to the console")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.11")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.12.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.12")]
[assembly: System.Reflection.AssemblyProductAttribute("SyslogLogging")]
[assembly: System.Reflection.AssemblyTitleAttribute("LoggingModule")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.12.0")]

// Generated by the MSBuild WriteCodeFragment class.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
5a563cba9e54533028413d44da73d93e92e3ca5c
df2cec30eebbc3e89ad52af61e62b4a5005f3bbf
Binary file modified LoggingModule/obj/Debug/net452/LoggingModule.assets.cache
Binary file not shown.
Binary file modified LoggingModule/obj/Debug/net452/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/obj/Debug/net452/LoggingModule.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("(c)2019 Joel Christner")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Simple C# class library for logging to syslog and to the console")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.11")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.12.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.12")]
[assembly: System.Reflection.AssemblyProductAttribute("SyslogLogging")]
[assembly: System.Reflection.AssemblyTitleAttribute("LoggingModule")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.12.0")]

// Generated by the MSBuild WriteCodeFragment class.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
5a563cba9e54533028413d44da73d93e92e3ca5c
df2cec30eebbc3e89ad52af61e62b4a5005f3bbf
Binary file not shown.
Binary file modified LoggingModule/obj/Debug/netstandard2.0/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/obj/Debug/netstandard2.0/LoggingModule.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion LoggingModule/obj/LoggingModule.csproj.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": 1,
"dgSpecHash": "QB2s1dkTtMgPEMgffMqcHI193kJeyRUWoW0Cf51f7lGaGNyHsAQmqUVpAT+3wSYLuHwhBYa0WI9SAiA7neVuvQ==",
"dgSpecHash": "4kG2vRy0PedB2FtziSiw5fggvAb9dovR4AAWTchI+ioQz4vg4VtQ2UC1ytukyv0JFjL2+ltyCikSdip8DwN5uQ==",
"success": true
}
2 changes: 1 addition & 1 deletion LoggingModule/obj/LoggingModule.csproj.nuget.g.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\code\Misc\SyslogLogging\LoggingModule\obj\project.assets.json</ProjectAssetsFile>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\code\misc\SyslogLogging\LoggingModule\obj\project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\joelc\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
Expand Down
26 changes: 26 additions & 0 deletions LoggingModule/obj/Release/SyslogLogging.1.0.12.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SyslogLogging</id>
<version>1.0.12</version>
<authors>Joel Christner</authors>
<owners>Joel Christner</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/jchristn/LoggingModule/blob/master/LICENSE.TXT</licenseUrl>
<projectUrl>https://github.com/jchristn/LoggingModule</projectUrl>
<iconUrl>https://raw.githubusercontent.com/jchristn/loggingmodule/master/assets/logo.ico</iconUrl>
<description>Simple C# class library for logging to syslog and to the console</description>
<releaseNotes>Fixed blocking issue on console send</releaseNotes>
<copyright>(c)2019 Joel Christner</copyright>
<tags>syslog logging console</tags>
<repository type="Github" url="https://github.com/jchristn/LoggingModule" />
<dependencies>
<group targetFramework=".NETFramework4.5.2" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
<files>
<file src="C:\code\misc\SyslogLogging\LoggingModule\bin\Release\net452\LoggingModule.dll" target="lib\net452\LoggingModule.dll" />
<file src="C:\code\misc\SyslogLogging\LoggingModule\bin\Release\netstandard2.0\LoggingModule.dll" target="lib\netstandard2.0\LoggingModule.dll" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("(c)2019 Joel Christner")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Simple C# class library for logging to syslog and to the console")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.11")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.12.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.12")]
[assembly: System.Reflection.AssemblyProductAttribute("SyslogLogging")]
[assembly: System.Reflection.AssemblyTitleAttribute("LoggingModule")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.12.0")]

// Generated by the MSBuild WriteCodeFragment class.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
7ce930d75d575eee4f9f6bc8f96dfabd4f0b440c
ce643718d5485f19445992696b91814cca07584f
Binary file modified LoggingModule/obj/Release/net452/LoggingModule.assets.cache
Binary file not shown.
Binary file modified LoggingModule/obj/Release/net452/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/obj/Release/net452/LoggingModule.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("(c)2019 Joel Christner")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Simple C# class library for logging to syslog and to the console")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.11")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.12.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.12")]
[assembly: System.Reflection.AssemblyProductAttribute("SyslogLogging")]
[assembly: System.Reflection.AssemblyTitleAttribute("LoggingModule")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.11.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.12.0")]

// Generated by the MSBuild WriteCodeFragment class.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
7ce930d75d575eee4f9f6bc8f96dfabd4f0b440c
ce643718d5485f19445992696b91814cca07584f
Binary file not shown.
Binary file modified LoggingModule/obj/Release/netstandard2.0/LoggingModule.dll
Binary file not shown.
Binary file modified LoggingModule/obj/Release/netstandard2.0/LoggingModule.pdb
Binary file not shown.
12 changes: 7 additions & 5 deletions LoggingModule/obj/project.assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "1.0.11",
"version": "1.0.12",
"restore": {
"projectUniqueName": "C:\\code\\Misc\\SyslogLogging\\LoggingModule\\LoggingModule.csproj",
"projectUniqueName": "C:\\code\\misc\\SyslogLogging\\LoggingModule\\LoggingModule.csproj",
"projectName": "SyslogLogging",
"projectPath": "C:\\code\\Misc\\SyslogLogging\\LoggingModule\\LoggingModule.csproj",
"projectPath": "C:\\code\\misc\\SyslogLogging\\LoggingModule\\LoggingModule.csproj",
"packagesPath": "C:\\Users\\joelc\\.nuget\\packages\\",
"outputPath": "C:\\code\\Misc\\SyslogLogging\\LoggingModule\\obj\\",
"outputPath": "C:\\code\\misc\\SyslogLogging\\LoggingModule\\obj\\",
"projectStyle": "PackageReference",
"crossTargeting": true,
"fallbackFolders": [
Expand All @@ -207,7 +207,9 @@
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
"https://api.nuget.org/v3/index.json": {},
"https://nuget.pkg.github.com/jchristn/index.json": {},
"https://nuget.pkg.github.com/kvpbase/index.json": {}
},
"frameworks": {
"net452": {
Expand Down
Binary file modified Test/bin/Debug/LoggingModule.dll
Binary file not shown.
Binary file modified Test/bin/Debug/LoggingModule.pdb
Binary file not shown.
Binary file modified Test/bin/Debug/LoggingModuleTest.exe
Binary file not shown.
Binary file modified Test/bin/Debug/LoggingModuleTest.pdb
Binary file not shown.
Binary file modified Test/bin/Release/LoggingModule.dll
Binary file not shown.
Binary file modified Test/bin/Release/LoggingModule.pdb
Binary file not shown.
Binary file modified Test/bin/Release/LoggingModuleTest.exe
Binary file not shown.
Binary file modified Test/bin/Release/LoggingModuleTest.pdb
Binary file not shown.
Binary file modified Test/obj/Debug/LoggingModuleTest.exe
Binary file not shown.
Binary file modified Test/obj/Debug/LoggingModuleTest.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Test/obj/Debug/Test.csproj.CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9c94b0b2d61aace4c65d5577a17bf06cde992a98
1ce42ab95494a9bafbb84efc089191b999820f49
Binary file modified Test/obj/Debug/Test.csprojAssemblyReference.cache
Binary file not shown.
Binary file modified Test/obj/Release/LoggingModuleTest.exe
Binary file not shown.
Binary file modified Test/obj/Release/LoggingModuleTest.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Test/obj/Release/Test.csproj.CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
60b117c88a17961c64e92568bd393f866c0a2304
2302617ab80958658a2258d253db19ed0205728f
Binary file modified Test/obj/Release/Test.csprojAssemblyReference.cache
Binary file not shown.

0 comments on commit ea2a31a

Please sign in to comment.