Skip to content

Commit 00c9809

Browse files
Final changes for package version 2021.1.4.00.
1 parent a235731 commit 00c9809

File tree

101 files changed

+729
-646
lines changed

Some content is hidden

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

101 files changed

+729
-646
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Here are the results from the current benchmark tests that takes over 3 hours to
4747
* [TypeHelper][29]
4848
* [Xml.XmlHelper][30]
4949

50-
## Your Support Is Needed
51-
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!
50+
# Your Support Is Needed
51+
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>
5252

5353
[1]: https://github.com/RealDotNetDave/dotNetTips.Utility.Core/tree/master/src/Core/dotNetTips.Utility.Core.EntityFramework
5454
[2]: https://github.com/RealDotNetDave/dotNetTips.Utility.Core/tree/master/src/Core/dotNetTips.Utility.Core.Windows

src/Benchmarking/dotNetTips.Utility.Benchmarks/dotNetTips.Utility.Benchmarks/PerfTestRunner.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
// </copyright>
1212
// <summary></summary>
1313
// ***********************************************************************
14+
using System;
1415
using BenchmarkDotNet.Attributes;
1516
using BenchmarkDotNet.Engines;
17+
using BenchmarkDotNet.Loggers;
1618
using BenchmarkDotNet.Order;
17-
using System;
1819
using static BenchmarkDotNet.Attributes.MarkdownExporterAttribute;
1920

2021
namespace dotNetTips.Utility.Benchmarks
@@ -116,21 +117,20 @@ protected TimeSpan TestTimeSpan
116117
{
117118
get
118119
{
119-
return _testTimeSpan;
120+
return this._testTimeSpan;
120121
}
121122
set
122123
{
123-
_testTimeSpan = value;
124+
this._testTimeSpan = value;
124125
}
125126
}
126127

127128
/// <summary>
128129
/// Cleanups this instance.
129130
/// </summary>
130-
/// TODO Edit XML Comment Template for Cleanup
131131
public virtual void Cleanup()
132132
{
133-
BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"Init() - {this.GetType().FullName}.");
133+
//ConsoleLogger.Default.WriteLine(LogKind.Info, $"Cleanup() - {this.GetType().FullName}.");
134134
}
135135

136136
/// <summary>
@@ -160,7 +160,7 @@ public void GlobalSetup()
160160
public virtual void Setup()
161161
{
162162
// BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"TEST {HostEnvironmentInfo.GetInformation()}.");
163-
BenchmarkDotNet.Loggers.ConsoleLogger.Default.WriteLine(BenchmarkDotNet.Loggers.LogKind.Info, $"Init() - {this.GetType().FullName}.");
163+
ConsoleLogger.Default.WriteLine(LogKind.Info, $"Init() - {this.GetType().FullName}.");
164164
}
165165

166166
}

src/Benchmarking/dotNetTips.Utility.Benchmarks/dotNetTips.Utility.Benchmarks/dotNetTips.Utility.Benchmarks.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<Configurations>Release</Configurations>
99
<DebugType>pdbonly</DebugType>
1010
<DebugSymbols>true</DebugSymbols>
11-
<AssemblyVersion>2020.11.2.40274</AssemblyVersion>
12-
<FileVersion>2020.11.2.40274</FileVersion>
11+
<AssemblyVersion>2021.1.13.40277</AssemblyVersion>
12+
<FileVersion>2021.1.13.40277</FileVersion>
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -18,10 +18,10 @@
1818
<ItemGroup>
1919
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
2020
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.12.1" />
21-
<PackageReference Include="dotNetTips.Utility.Core.Windows" Version="2020.11.1.11" />
22-
<PackageReference Include="dotNetTips.Utility.Standard" Version="2020.11.1.11" />
23-
<PackageReference Include="dotNetTips.Utility.Standard.Extensions" Version="2020.11.1.11" />
24-
<PackageReference Include="dotNetTips.Utility.Standard.Tester" Version="2020.11.1.11" />
21+
<PackageReference Include="dotNetTips.Utility.Core.Windows" Version="2021.1.4" />
22+
<PackageReference Include="dotNetTips.Utility.Standard" Version="2021.1.4" />
23+
<PackageReference Include="dotNetTips.Utility.Standard.Extensions" Version="2021.1.4" />
24+
<PackageReference Include="dotNetTips.Utility.Standard.Tester" Version="2020.11.19.1" />
2525
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
2626
<PackageReference Include="Microsoft.Data.Services.Client" Version="5.8.4" />
2727
</ItemGroup>

src/Core/dotNetTips.Utility.Core.Windows/dotNetTips.Utility.Core.Windows.csproj

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<LangVersion>8.0</LangVersion>
6-
<Nullable>enable</Nullable>
7-
<AssemblyVersion>2021.1.9.34787</AssemblyVersion>
8-
<FileVersion>2021.1.9.34787</FileVersion>
9-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10-
<Version>2021.1.4.00</Version>
4+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
5+
<AssemblyVersion>2021.1.21.34802</AssemblyVersion>
116
<Authors>David McCarter</Authors>
7+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
128
<Company>David McCarter - dotNetTips.com</Company>
13-
<Description>Common .NET Core Code for Windows</Description>
149
<Copyright>McCarter Consulting (David McCarter)</Copyright>
10+
<DebugSymbols>true</DebugSymbols>
11+
<DebugType>pdbonly</DebugType>
12+
<Description>Common .NET Core Code for Windows</Description>
13+
<DocumentationFile>..\..\..\appbin\dotNetTips.Utility.Core.Windows.xml</DocumentationFile>
14+
<EnableNETAnalyzers>true</EnableNETAnalyzers>
15+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
16+
<FileVersion>2021.1.21.34802</FileVersion>
17+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
18+
<LangVersion>8.0</LangVersion>
19+
<Nullable>enable</Nullable>
20+
<OutputPath>..\..\..\appbin\</OutputPath>
21+
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
1522
<PackageProjectUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</PackageProjectUrl>
16-
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
17-
<RepositoryType>git</RepositoryType>
23+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1824
<PackageTags>David McCarter, dotNetDave, dotNetTips.com</PackageTags>
25+
<RepositoryType>git</RepositoryType>
26+
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
27+
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
28+
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
29+
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
30+
<TargetFramework>netcoreapp3.1</TargetFramework>
31+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
32+
<Version>2021.1.4.00</Version>
1933
<PackageReleaseNotes>
2034
-- OCT 2019: Initial Release
2135
-- DEC 2019 (QUARTERLY RELEASE): Code cleanup.
@@ -24,13 +38,8 @@
2438
-- AUG 2020: Code cleanup.
2539
-- NOV 2020 (QUARTERLY RELEASE): Added TempFileManager.
2640
-- NOV 19, 2020: Minor update.
41+
-- FEB 2021 (QUARTERLY RELEASE): Code Cleanup.
2742
</PackageReleaseNotes>
28-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
29-
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
30-
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
31-
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
32-
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
33-
<EnableNETAnalyzers>true</EnableNETAnalyzers>
3443
</PropertyGroup>
3544

3645
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/Standard/dotNetTips.Utility.Standard.Common/ControlChars.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,5 @@ public static class ControlChars
153153
/// Vertical tab.
154154
/// </summary>
155155
public const char VerticalTab = '\v';
156-
157156
}
158157
}

src/Standard/dotNetTips.Utility.Standard.Common/DirectoryNotFoundException.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ public class DirectoryNotFoundException : LoggableException
3333
/// </summary>
3434
public DirectoryNotFoundException()
3535
{
36-
3736
}
3837

3938
/// <summary>
@@ -99,14 +98,12 @@ public DirectoryNotFoundException(string message, Exception ex, string userMessa
9998
protected DirectoryNotFoundException(SerializationInfo info, StreamingContext context)
10099
: base(info, context)
101100
{
102-
103101
}
104102

105103
/// <summary>
106104
/// Gets the directory.
107105
/// </summary>
108106
/// <value>The directory.</value>
109107
public string Directory { get; private set; }
110-
111108
}
112109
}

src/Standard/dotNetTips.Utility.Standard.Common/Logging/LoggingHelper.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,5 @@ public static Exception[] RetrieveAllExceptions(Exception ex)
7474

7575
return collection.ToArray();
7676
}
77-
7877
}
7978
}

src/Standard/dotNetTips.Utility.Standard.Common/dotNetTips.Utility.Standard.Common.csproj

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,42 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<AssemblyVersion>2021.1.9.34815</AssemblyVersion>
6-
<FileVersion>2021.1.9.34815</FileVersion>
7-
<Version>2021.1.4.00</Version>
4+
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
5+
<AssemblyName>dotNetTips.Utility.Standard.Common</AssemblyName>
6+
<AssemblyVersion>2021.1.21.34829</AssemblyVersion>
87
<Authors>David McCarter</Authors>
9-
<Company>David McCarter - dotNetTips.com</Company>
8+
<Company>David McCarter - dotNetTips.com</Company>
9+
<Copyright>McCarter Consulting (David McCarter)</Copyright>
10+
<DebugSymbols>true</DebugSymbols>
11+
<DebugType>pdbonly</DebugType>
12+
<DelaySign>False</DelaySign>
1013
<Description>Common .NET Standard Code</Description>
11-
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
14+
<DocumentationFile>..\..\..\appbin\dotNetTips.Utility.Standard.Common.xml</DocumentationFile>
15+
<EnableNETAnalyzers>true</EnableNETAnalyzers>
16+
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
17+
<FileVersion>2021.1.21.34829</FileVersion>
18+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
19+
<LangVersion>8.0</LangVersion>
20+
<Nullable>enable</Nullable>
21+
<OutputPath>..\..\..\appbin\</OutputPath>
22+
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
23+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
24+
<PackageTags>David McCarter, dotNetDave, dotNetTips.com</PackageTags>
1225
<RepositoryType>git</RepositoryType>
13-
<Copyright>McCarter Consulting (David McCarter)</Copyright>
26+
<RepositoryUrl>https://github.com/RealDotNetDave/dotNetTips.Utility.Core</RepositoryUrl>
27+
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
28+
<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
29+
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
30+
<TargetFramework>netstandard2.0</TargetFramework>
31+
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
32+
<Version>2021.1.4.00</Version>
1433
<PackageReleaseNotes>
1534
-- AUG 2020: First release.
1635
-- SEP 2020: Added Date class. New methods and code cleanup.
1736
-- NOV 2020 (QUARTERLY RELEASE): Code cleanup. Bug fixes.
1837
-- NOV 19, 2020: Minor update.
38+
-- FEB 2021 (QUARTERLY RELEASE): 11 new methods. Code cleanup.
1939
</PackageReleaseNotes>
20-
<AssemblyName>dotNetTips.Utility.Standard.Common</AssemblyName>
21-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
22-
<PackageIcon>2020 - dotNetTips - Real World - [email protected]</PackageIcon>
23-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
24-
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
25-
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
26-
<EnableNETAnalyzers>true</EnableNETAnalyzers>
2740
</PropertyGroup>
2841

2942
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

0 commit comments

Comments
 (0)