diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index bb57188..60b79cf 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,19 +15,6 @@ jobs: submodules: true - name: Fetch tag git metadata run: git fetch --force --update-shallow --depth 1 origin +refs/tags/*:refs/tags/* || echo no tags - - name: Check for .NET 6 preinstalled - id: dotnet_check - run: | - compgen -G "~/.dotnet/sdk/6.0.*" \ - && echo "::set-output name=has_6_0::true" || \ - compgen -G "/usr/local/dotnet/sdk/6.0.*" \ - && echo "::set-output name=has_6_0::true" || \ - compgen -G "/usr/share/dotnet/sdk/6.0.*" \ - && echo "::set-output name=has_6_0::true" || true - - uses: actions/setup-dotnet@v1.9.1 - if: ${{ steps.dotnet_check.outputs.has_6_0 != 'true' }} - with: - dotnet-version: 6.0.x - name: NuGet Auth uses: StirlingLabs/GithubNugetAuthAction@main with: diff --git a/README.md b/README.md index 1804dc2..c2a6b52 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,13 @@ ![Collections.Net](https://raw.githubusercontent.com/StirlingLabs/Collections.Net/main/utilities-collections.jpg) -### Collections used throughout the Stirling Labs C# codebase +Collections used in the Stirling Labs codebase that aren't in the standard libraries. ## 🚀 How to install -If you've [configured GitHub Packages](/StirlingLabs/Logging/blob/master/docs/GitHubPackages.md), you can just: - ```bash > dotnet add PROJECT package StirlingLabs.Utilities.Collections ``` -or just use NuGet however you would normally. - ## 👀 What's included Any collection datatype implementation code that is used in more than one package is a contender to be included here. If you see something that you think should be included, please diff --git a/SL.png b/SL.png index c30cd74..98765e0 100644 Binary files a/SL.png and b/SL.png differ diff --git a/StirlingLabs.Utilities.Collections.Tests/StirlingLabs.Utilities.Collections.Tests.csproj b/StirlingLabs.Utilities.Collections.Tests/StirlingLabs.Utilities.Collections.Tests.csproj index cda2910..b8e2c24 100644 --- a/StirlingLabs.Utilities.Collections.Tests/StirlingLabs.Utilities.Collections.Tests.csproj +++ b/StirlingLabs.Utilities.Collections.Tests/StirlingLabs.Utilities.Collections.Tests.csproj @@ -17,20 +17,20 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + - + diff --git a/Version.proj b/Version.proj index 8836b9d..a6afd8d 100644 --- a/Version.proj +++ b/Version.proj @@ -6,11 +6,16 @@ git https://github.com/StirlingLabs/Collections.Net.git https://github.com/StirlingLabs/Collections.Net + + Collections used throughout the Stirling Labs C# codebase, including; + AsyncProducerConsumer and ConcurrentBijectiveSet. + master true high LICENSE.txt SL.png + README.md @@ -18,5 +23,6 @@ + diff --git a/utilities-collections.jpg b/utilities-collections.jpg index d128905..de70c86 100644 Binary files a/utilities-collections.jpg and b/utilities-collections.jpg differ