Skip to content

Commit

Permalink
Final changes for package version 2021.1.4.00.
Browse files Browse the repository at this point in the history
  • Loading branch information
RealDotNetDave committed Jan 21, 2021
1 parent a235731 commit 00c9809
Show file tree
Hide file tree
Showing 101 changed files with 729 additions and 646 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ Here are the results from the current benchmark tests that takes over 3 hours to
* [TypeHelper][29]
* [Xml.XmlHelper][30]

## Your Support Is Needed
Do you have code you would like to submit to these repositories? Submit a pull request or submit an issue. I promise to take a look and include it if I like it!
# Your Support Is Needed
Do you have code you would like to submit to these repositories? Submit a pull request or submit an issue. I promise to take a look and include it if I like it! You can also support this via GitHub Sponsors: <a href="https://github.com/sponsors/RealDotNetDave" target="_blank">https://github.com/sponsors/RealDotNetDave</a>

[1]: https://github.com/RealDotNetDave/dotNetTips.Utility.Core/tree/master/src/Core/dotNetTips.Utility.Core.EntityFramework
[2]: https://github.com/RealDotNetDave/dotNetTips.Utility.Core/tree/master/src/Core/dotNetTips.Utility.Core.Windows
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@
// </copyright>
// <summary></summary>
// ***********************************************************************
using System;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Engines;
using BenchmarkDotNet.Loggers;
using BenchmarkDotNet.Order;
using System;
using static BenchmarkDotNet.Attributes.MarkdownExporterAttribute;

namespace dotNetTips.Utility.Benchmarks
Expand Down Expand Up @@ -116,21 +117,20 @@ protected TimeSpan TestTimeSpan
{
get
{
return _testTimeSpan;
return this._testTimeSpan;
}
set
{
_testTimeSpan = value;
this._testTimeSpan = value;
}
}

/// <summary>
/// Cleanups this instance.
/// </summary>
/// TODO Edit XML Comment Template for Cleanup
public virtual void Cleanup()
{
BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"Init() - {this.GetType().FullName}.");
//ConsoleLogger.Default.WriteLine(LogKind.Info, $"Cleanup() - {this.GetType().FullName}.");
}

/// <summary>
Expand Down Expand Up @@ -160,7 +160,7 @@ public void GlobalSetup()
public virtual void Setup()
{
// BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"TEST {HostEnvironmentInfo.GetInformation()}.");
BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"Init() - {this.GetType().FullName}.");
ConsoleLogger.Default.WriteLine(LogKind.Info, $"Init() - {this.GetType().FullName}.");
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<Configurations>Release</Configurations>
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
<AssemblyVersion>2020.11.2.40274</AssemblyVersion>
<FileVersion>2020.11.2.40274</FileVersion>
<AssemblyVersion>2021.1.13.40277</AssemblyVersion>
<FileVersion>2021.1.13.40277</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -18,10 +18,10 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.12.1" />
<PackageReference Include="dotNetTips.Utility.Core.Windows" Version="2020.11.1.11" />
<PackageReference Include="dotNetTips.Utility.Standard" Version="2020.11.1.11" />
<PackageReference Include="dotNetTips.Utility.Standard.Extensions" Version="2020.11.1.11" />
<PackageReference Include="dotNetTips.Utility.Standard.Tester" Version="2020.11.1.11" />
<PackageReference Include="dotNetTips.Utility.Core.Windows" Version="2021.1.4" />
<PackageReference Include="dotNetTips.Utility.Standard" Version="2021.1.4" />
<PackageReference Include="dotNetTips.Utility.Standard.Extensions" Version="2021.1.4" />
<PackageReference Include="dotNetTips.Utility.Standard.Tester" Version="2020.11.19.1" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
<PackageReference Include="Microsoft.Data.Services.Client" Version="5.8.4" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<AssemblyVersion>2021.1.9.34787</AssemblyVersion>
<FileVersion>2021.1.9.34787</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2021.1.4.00</Version>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<AssemblyVersion>2021.1.21.34802</AssemblyVersion>
<Authors>David McCarter</Authors>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Company>David McCarter - dotNetTips.com</Company>
<Description>Common .NET Core Code for Windows</Description>
<Copyright>McCarter Consulting (David McCarter)</Copyright>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Description>Common .NET Core Code for Windows</Description>
<DocumentationFile>..\..\..\appbin\dotNetTips.Utility.Core.Windows.xml</DocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<FileVersion>2021.1.21.34802</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<OutputPath>..\..\..\appbin\</OutputPath>
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
<PackageProjectUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>David McCarter, dotNetDave, dotNetTips.com</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Version>2021.1.4.00</Version>
<PackageReleaseNotes>
-- OCT 2019: Initial Release
-- DEC 2019 (QUARTERLY RELEASE): Code cleanup.
Expand All @@ -24,13 +38,8 @@
-- AUG 2020: Code cleanup.
-- NOV 2020 (QUARTERLY RELEASE): Added TempFileManager.
-- NOV 19, 2020: Minor update.
-- FEB 2021 (QUARTERLY RELEASE): Code Cleanup.
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,5 @@ public static class ControlChars
/// Vertical tab.
/// </summary>
public const char VerticalTab = '\v';

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class DirectoryNotFoundException : LoggableException
/// </summary>
public DirectoryNotFoundException()
{

}

/// <summary>
Expand Down Expand Up @@ -99,14 +98,12 @@ public DirectoryNotFoundException(string message, Exception ex, string userMessa
protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context)
: base(info, context)
{

}

/// <summary>
/// Gets the directory.
/// </summary>
/// <value>The directory.</value>
public string Directory { get; private set; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,5 @@ public static Exception[] RetrieveAllExceptions(Exception ex)

return collection.ToArray();
}

}
}
Original file line number Diff line number Diff line change
@@ -1,29 +1,42 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>2021.1.9.34815</AssemblyVersion>
<FileVersion>2021.1.9.34815</FileVersion>
<Version>2021.1.4.00</Version>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<AssemblyName>dotNetTips.Utility.Standard.Common</AssemblyName>
<AssemblyVersion>2021.1.21.34829</AssemblyVersion>
<Authors>David McCarter</Authors>
<Company>David McCarter - dotNetTips.com</Company>
<Company>David McCarter - dotNetTips.com</Company>
<Copyright>McCarter Consulting (David McCarter)</Copyright>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<DelaySign>False</DelaySign>
<Description>Common .NET Standard Code</Description>
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
<DocumentationFile>..\..\..\appbin\dotNetTips.Utility.Standard.Common.xml</DocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<FileVersion>2021.1.21.34829</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<OutputPath>..\..\..\appbin\</OutputPath>
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>David McCarter, dotNetDave, dotNetTips.com</PackageTags>
<RepositoryType>git</RepositoryType>
<Copyright>McCarter Consulting (David McCarter)</Copyright>
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<TargetFramework>netstandard2.0</TargetFramework>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<Version>2021.1.4.00</Version>
<PackageReleaseNotes>
-- AUG 2020: First release.
-- SEP 2020: Added Date class. New methods and code cleanup.
-- NOV 2020 (QUARTERLY RELEASE): Code cleanup. Bug fixes.
-- NOV 19, 2020: Minor update.
-- FEB 2021 (QUARTERLY RELEASE): 11 new methods. Code cleanup.
</PackageReleaseNotes>
<AssemblyName>dotNetTips.Utility.Standard.Common</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Loading

0 comments on commit 00c9809

Please sign in to comment.