generated from codebeltnet/dotnet-new-classlib
-
Notifications
You must be signed in to change notification settings - Fork 0
V1.0.0/benchmarkdotnet api #1
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 all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
948e28b
:fire: remove repo template files
gimlichael 856dbca
:sparkles: add extensibility layer for benchmarkdotnet
gimlichael 69ad4fe
:test_tube: add comprehensive tests for BenchmarkWorkspaceOptions
gimlichael e7ec032
:rocket: add dedicated benchmarking suite and runner projects
gimlichael 6aeb59e
:chart_with_upwards_trend: add benchmarkdotnet github reports for wor…
gimlichael a65dcce
:lock: refactor assembly resolution for thread safety and speed
gimlichael ed120db
:memo: update ai docs for this repository
gimlichael 54e3de1
:rocket: add console integration for project
gimlichael bda283c
:heavy_plus_sign: add solution file for project organization
gimlichael 5d35470
:recycle: update branding, frameworks, and benchmark build settings
gimlichael a1cf015
:wastebasket: remove release notes file prop, add clean for benchmark…
gimlichael a3a0628
:arrow_up: bump dependencies
gimlichael 42167d2
:sparkles: add benchmark suite for core classes and operations
gimlichael e37b15d
:recycle: migrate to .slnx format
gimlichael 7eaaa7f
:arrow_up: bump dependencies
gimlichael f8815ad
:memo: update benchmark naming and placement guidelines
gimlichael 3d430f7
:construction_worker: update ci pipeline for BenchmarkDotNet
gimlichael bccb3d4
:fire: remove template release notes, readme, and icon from project
gimlichael f9940f5
:bookmark: update changelog for initial stable release of packages
gimlichael 18608ce
:bookmark: add package release notes for BenchmarkDotNet extensions
gimlichael d9b5d20
✨ update type parameter in AddBenchmarkWorkspace method for clarity
gimlichael c524199
:art: add new icon.png image to project
gimlichael 469effd
✨ update docfx to match benchmarkdotnet
gimlichael 9e9288a
:package: updated NuGet package definition
gimlichael e69f60c
:art: add property group with description and tags to csproj files
gimlichael 4254e60
:art: update exception documentation for ConfigureBenchmarkDotNet method
gimlichael 9300d7d
:art: update readme to reflect benchmarkdotnet extensions
gimlichael 91a2c47
:chart_with_upwards_trend: add benchmark reports
gimlichael f889f3f
:art: update readme with folder structure and usage examples
gimlichael 4788207
:art: fix os matrix formatting in ci pipeline configuration
gimlichael 0af72cd
:pencil2: fix typo in benchmarkdotnet project/repo names in ci-pipeline
gimlichael d89b6b1
:adhesive_bandage: handle null GetEntryAssembly in BenchmarkProgram ctor
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
There are no files selected for viewing
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,4 +1,4 @@ | ||
| $version = minver -i -t v -v w | ||
| docfx metadata docfx.json | ||
| docker buildx build -t yourbranding/classlibrary1:$version --platform linux/arm64,linux/amd64 --load -f Dockerfile.docfx . | ||
| docker buildx build -t benchmarkdotnet-docfx:$version --platform linux/arm64,linux/amd64 --load -f Dockerfile.docfx . | ||
| get-childItem -recurse -path api -include *.yml, .manifest | remove-item |
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,3 +1,3 @@ | ||
| $version = minver -i -t v -v w | ||
| docker tag classlibrary1-docfx:$version yourbranding/classlibrary1:$version | ||
| docker push yourbranding/classlibrary1:$version | ||
| docker tag benchmarkdotnet-docfx:$version jcr.codebelt.net/geekle/benchmarkdotnet-docfx:$version | ||
| docker push jcr.codebelt.net/geekle/benchmarkdotnet-docfx:$version |
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
.docfx/api/namespaces/Codebelt.Extensions.BenchmarkDotNet.Console.md
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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| uid: Codebelt.Extensions.BenchmarkDotNet.Console | ||
| summary: *content | ||
| --- | ||
| The `Codebelt.Extensions.BenchmarkDotNet.Console` namespace contains types that provide a structured and opinionated console-hosted execution model for `BenchmarkDotNet`. | ||
|
|
||
| [!INCLUDE [availability-modern](../../includes/availability-modern.md)] |
14 changes: 14 additions & 0 deletions
14
.docfx/api/namespaces/Codebelt.Extensions.BenchmarkDotNet.md
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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| --- | ||
| uid: Codebelt.Extensions.BenchmarkDotNet | ||
| summary: *content | ||
| --- | ||
| The `Codebelt.Extensions.BenchmarkDotNet` namespace contains types that provide a uniform, opinionated, and extensible way of working with `BenchmarkDotNet`. | ||
|
|
||
| [!INCLUDE [availability-modern](../../includes/availability-modern.md)] | ||
|
|
||
| ### Extension Methods | ||
|
|
||
| |Type|Ext|Methods| | ||
| |--:|:-:|---| | ||
| |BenchmarkWorkspaceOptions|⬇️|`ConfigureBenchmarkDotNet`| | ||
| |IServiceCollection|⬇️|`AddBenchmarkWorkspace`, `AddBenchmarkWorkspace<TWorkspace>`| |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| Availability: .NET 8 and .NET 6 | ||
| Availability: .NET 10 and .NET 9.0 |
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,7 +1,11 @@ | ||
| --- | ||
| uid: frontpage-md | ||
| title: ClassLibrary1 | ||
| title: Extensions for BenchmarkDotNet by Codebelt | ||
| --- | ||
| # ClassLibrary1 | ||
|  | ||
|
|
||
| Landing page for ClassLibrary1. | ||
| # Extensions for BenchmarkDotNet by Codebelt | ||
|
|
||
| This project is part of [Extensions for BenchmarkDotNet by Codebelt](https://github.com/codebeltnet/benchmarkdotnet). | ||
|
|
||
| Proceed to the [docs](/api/Codebelt.Extensions.BenchmarkDotNet.html) to learn more about the capabilities of this 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,12 @@ | ||
| # NuGet Packages | ||
|
|
||
| This is a list of all NuGet packages from **ClassLibrary1** that is publicly available on [NuGet.org](https://www.nuget.org/packages?q=ClassLibrary1); the packages here are listed alphabetically and are available in preview-, rc- and production-ready versions. | ||
| This is a list of all NuGet packages from **Extensions for BenchmarkDotNet by Codebelt** that is publicly available on [NuGet.org](https://www.nuget.org/packages?q=codebelt.extensions.benchmarkdotnet); the packages here are listed alphabetically and are available in preview-, rc- and production-ready versions. | ||
|
|
||
| ## 📦 Standalone Packages | ||
|
|
||
| Provides a focused API for ... | ||
| Provides a focused API for BenchmarkDotNet projects. | ||
|
|
||
| |Package|vNext|Stable|Downloads| | ||
| |:--|:-:|:-:|:-:| | ||
| | [ClassLibrary1](https://www.nuget.org/packages/ClassLibrary1/) |  |  |  | | ||
|
|
||
| ## 🏭 Productivity Packages | ||
|
|
||
| Provides a convenient set of default API additions for ... | ||
|
|
||
| |Package|vNext|Stable|Downloads| | ||
| |:--|:-:|:-:|:-:| | ||
| | [ClassLibrary1.App](https://www.nuget.org/packages/ClassLibrary1.App/) |  |  |  | | ||
| | [Codebelt.Extensions.BenchmarkDotNet](https://www.nuget.org/packages/Codebelt.Extensions.BenchmarkDotNet/) |  |  |  | | ||
| | [Codebelt.Extensions.BenchmarkDotNet.Console](https://www.nuget.org/packages/Codebelt.Extensions.BenchmarkDotNet.Console/) |  |  |  | |
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,4 +1,4 @@ | ||
| - name: ClassLibrary1 API | ||
| href: api/ClassLibrary1.html | ||
| - name: Bootstrapper API | ||
| href: api/Codebelt.Extensions.BenchmarkDotNet.html | ||
| - name: NuGet | ||
| href: packages |
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.