-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final changes for package version 2021.1.4.00.
- Loading branch information
1 parent
a235731
commit 00c9809
Showing
101 changed files
with
729 additions
and
646 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,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. | ||
|
@@ -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'"> | ||
|
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 |
---|---|---|
|
@@ -153,6 +153,5 @@ public static class ControlChars | |
/// Vertical tab. | ||
/// </summary> | ||
public const char VerticalTab = '\v'; | ||
|
||
} | ||
} |
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 |
---|---|---|
|
@@ -74,6 +74,5 @@ public static Exception[] RetrieveAllExceptions(Exception ex) | |
|
||
return collection.ToArray(); | ||
} | ||
|
||
} | ||
} |
41 changes: 27 additions & 14 deletions
41
src/Standard/dotNetTips.Utility.Standard.Common/dotNetTips.Utility.Standard.Common.csproj
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,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'"> | ||
|
Oops, something went wrong.