-
Notifications
You must be signed in to change notification settings - Fork 5
V10.1.0/api improvements and features #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 20 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
e9986a6
:zap: FNV performance boost for bit sizes greater than 128; modest op…
gimlichael a3d261c
:recycle: guard rails to ensure FowlerNollVoHash specs
gimlichael f7680c1
:sparkles: added copilot instructions
gimlichael 7608649
:zap: optimized foundation for DateSpan incl. updated unit test
gimlichael 054fc90
:white_check_mark: fixed bug in unit test
gimlichael 37b24ac
:zap: significant optimizations for FowlerNollVoHash base class (than…
gimlichael 6588893
:zap: optimized RandomString to be 2-3x more performant
gimlichael e90a69c
:white_check_mark: additional unit tests
gimlichael e0903d5
:chart_with_upwards_trend: first attempt to write performance test us…
gimlichael 4a70d0e
:zap: avoid using reflection (Activator)
gimlichael eef6194
:zap: optimize DelimitedString handling and performance
gimlichael f95ab69
:fix: refactor decryption logic and update using directives
gimlichael b312f00
:building_construction: refine project configurations and targets
gimlichael d54e999
:bug: add null-check validation to computehash input
gimlichael 324e8da
fix
gimlichael 6fbf13a
:fix: make setup parameter optional in constructor (consistency)
gimlichael 7df4132
:zap: optimize AES performance via TransformFinalBlock
gimlichael 934327c
:white_check_mark: add comprehensive unit tests for cryptography
gimlichael 92563d9
:zap: optimized crc classes for efficiency and clarity
gimlichael f77066c
:white_check_mark: add unit tests for crc and fnv hash algorithms
gimlichael 74d6773
:white_check_mark: add tests for hashfactory factory methods
gimlichael e79edbb
:books: update testing and benchmarking copilot guidelines
gimlichael 21062a7
:arrow_up: update xunit package versions to 3.2.1
gimlichael 12b7242
:construction_worker: update ci pipeline for os matrix support
gimlichael cb33dc4
:memo: update docs for tests and benchmarks naming conventions
gimlichael d450cab
:sparkles: add post-configuration support for parameter objects
gimlichael ce113e8
:white_check_mark: update test assertion for configurationTypesCount
gimlichael 4d12ffc
:package: updated NuGet package definition
gimlichael bdd450c
chore
gimlichael feec99d
:speech_balloon: updated community health pages
gimlichael 7e3948c
:arrow_up: bump dependencies
gimlichael 7f2f009
ai
gimlichael 83fde7e
fixes
gimlichael 13bc4d9
:alembic: early stages of support for benchmarkdotnet on select free …
gimlichael 27a9d0e
dependencies
gimlichael File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,6 +1,9 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <IsTestProject>$(MSBuildProjectName.EndsWith('Tests'))</IsTestProject> | ||
| <IsBenchmarkProject>$(MSBuildProjectName.EndsWith('Benchmarks'))</IsBenchmarkProject> | ||
| <IsSourceProject>$(MSBuildProjectDirectory.ToLower().StartsWith('$(MSBuildThisFileDirectory.ToLower())src'))</IsSourceProject> | ||
| <IsToolingProject>$(MSBuildProjectDirectory.ToLower().StartsWith('$(MSBuildThisFileDirectory.ToLower())tooling'))</IsToolingProject> | ||
| <IsLinux>$([MSBuild]::IsOSPlatform('Linux'))</IsLinux> | ||
| <IsWindows>$([MSBuild]::IsOSPlatform('Windows'))</IsWindows> | ||
| <IsMainAuthor Condition="'$(EMAIL)' == '[email protected]'">true</IsMainAuthor> | ||
|
|
@@ -13,7 +16,7 @@ | |
| <Deterministic>true</Deterministic> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(IsTestProject)' == 'false'"> | ||
| <PropertyGroup Condition="'$(IsSourceProject)' == 'true'"> | ||
| <TargetFrameworks>net10.0;net9.0;netstandard2.0</TargetFrameworks> | ||
| <Copyright>Copyright © Geekle 2009-2025. All rights reserved.</Copyright> | ||
| <Authors>gimlichael</Authors> | ||
|
|
@@ -46,7 +49,7 @@ | |
| <SourceRoot Include="$(NuGetPackageRoot)" RepositoryUrl="https://github.com/codebeltnet/cuemon" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition="'$(IsTestProject)' == 'false'"> | ||
| <ItemGroup Condition="'$(IsSourceProject)' == 'true'"> | ||
| <PackageReference Include="MinVer" PrivateAssets="all" /> | ||
| <None Include="..\..\.nuget\icon.png" Pack="true" Visible="false" PackagePath="icon.png" /> | ||
| <None Include="..\..\.nuget\$(MSBuildProjectName)\README.md" Pack="true" PackagePath="\" /> | ||
|
|
@@ -67,14 +70,23 @@ | |
| <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild> | ||
| <RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis> | ||
| <SonarQubeExclude>true</SonarQubeExclude> | ||
| <WarningLevel>0</WarningLevel> | ||
| <AnalysisLevel>none</AnalysisLevel> | ||
| <NoWarn>NU1701,NU1902,NU1903</NoWarn> | ||
| <CheckEolTargetFramework>false</CheckEolTargetFramework> | ||
| <NuGetAudit>false</NuGetAudit> | ||
| <UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(IsTestProject)' == 'true' AND '$(BuildingInsideVisualStudio)' != 'true'"> | ||
| <WarningLevel>0</WarningLevel> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(IsToolingProject)' == 'true'"> | ||
| <IsPackable>false</IsPackable> | ||
| <OutputType>Exe</OutputType> | ||
| <SonarQubeExclude>true</SonarQubeExclude> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup Condition="'$(IsTestProject)' == 'true'"> | ||
| <PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
| <PackageReference Include="xunit.v3" /> | ||
|
|
@@ -97,4 +109,13 @@ | |
| <PackageReference Include="Codebelt.Extensions.Xunit" /> | ||
| </ItemGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(IsBenchmarkProject)' == 'true'"> | ||
| <TargetFrameworks>net10.0;net9.0;netstandard2.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup Condition="'$(IsBenchmarkProject)' == 'true'"> | ||
| <PackageReference Include="BenchmarkDotNet" /> | ||
| <PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.