-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade nuget packages and enable nullable
- Loading branch information
1 parent
b779673
commit eca26ab
Showing
7 changed files
with
52 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>disable</Nullable> | ||
<Nullable>enable</Nullable> | ||
<PackageId>CodeFoxtrot.ConsoleLogger</PackageId> | ||
<Version>1.0.5</Version> | ||
<Version>1.0.6</Version> | ||
<Authors>CodeFoxtrot</Authors> | ||
<Company>CodeFoxtrot</Company> | ||
<Product>ConsoleLogger</Product> | ||
<Description>Simple ILogger implementation, providing asynchronous and configurable Console logging capabilities.</Description> | ||
<Copyright>2023</Copyright> | ||
<Copyright>2024</Copyright> | ||
<PackageProjectUrl>https://github.com/CodeFontana/ConsoleLogger</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/CodeFontana/ConsoleLogger</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>CodeFoxtrot Logging Log ConsoleLogger Logger</PackageTags> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<AssemblyVersion>1.0.5.0</AssemblyVersion> | ||
<FileVersion>1.0.5.0</FileVersion> | ||
<AssemblyVersion>1.0.6.0</AssemblyVersion> | ||
<FileVersion>1.0.6.0</FileVersion> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters