Skip to content

Commit

Permalink
Added index overload to seteach (#322)
Browse files Browse the repository at this point in the history
* Added SetEach overloads for including the index of the entry being modified - Closes #321
* Added README.md to nupkg - Closes #296
  • Loading branch information
roryprimrose authored Mar 17, 2024
1 parent 1a45247 commit 76ff9eb
Show file tree
Hide file tree
Showing 6 changed files with 883 additions and 50 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0.10.2
uses: gittools/actions/gitversion/setup@v1.1.1
with:
versionSpec: '5.x'

- name: Use GitVersion
id: gitversion # step id used as reference for output values
uses: gittools/actions/gitversion/execute@v0.10.2
uses: gittools/actions/gitversion/execute@v1.1.1
with:
useConfigFile: true
configFilePath: ./GitVersion.yml
Expand All @@ -44,7 +44,7 @@ jobs:
informationalVersion: ${{ steps.gitversion.outputs.InformationalVersion }}

- name: Setup dotnet v8.0
uses: actions/setup-dotnet@v3.0.2
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '8.x' # SDK Version to use.

Expand All @@ -59,7 +59,7 @@ jobs:

- name: Generate coverage report
# run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:Report -reporttypes:HtmlInline_AzurePipelines;Cobertura
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.0
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.3
with:
reports: "**/coverage*cobertura.xml"
targetdir: "Report"
Expand Down Expand Up @@ -108,12 +108,12 @@ jobs:

steps:
- name: Download packages
uses: actions/download-artifact@v4.1.3
uses: actions/download-artifact@v4.1.4
with:
name: packages

- name: Setup nuget
uses: nuget/setup-nuget@v1
uses: nuget/setup-nuget@v2

- name: Publish to MyGet.org
env:
Expand All @@ -129,12 +129,12 @@ jobs:
steps:

- name: Download packages
uses: actions/download-artifact@v4.1.3
uses: actions/download-artifact@v4.1.4
with:
name: packages

- name: Download version
uses: actions/download-artifact@v4.1.3
uses: actions/download-artifact@v4.1.4
with:
name: version

Expand All @@ -149,7 +149,7 @@ jobs:
run: Add-Content -Path ${env:GITHUB_ENV} "`nprojectName=$(${env:GITHUB_REPOSITORY}.substring(${env:GITHUB_REPOSITORY}.IndexOf('/') + 1))" -Encoding utf8

- name: Setup nuget
uses: nuget/setup-nuget@v1
uses: nuget/setup-nuget@v2

- name: Publish to GitHub
env:
Expand Down
2 changes: 1 addition & 1 deletion ModelBuilder.UnitTests/ModelBuilder.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.1">
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Loading

0 comments on commit 76ff9eb

Please sign in to comment.