Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.101
version: 10.0.102

- task: Cache@2
displayName: Cache packages
Expand All @@ -70,7 +70,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.101
version: 10.0.102

- task: Cache@2
displayName: Cache packages
Expand All @@ -94,7 +94,7 @@ jobs:
displayName: Install dotnet
inputs:
# renovate: datasource=dotnet depName=dotnet-sdk
version: 10.0.101
version: 10.0.102

- task: Cache@2
displayName: Cache packages
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
show-progress: false

- name: Cache packages
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -53,13 +53,13 @@ jobs:
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v5.0.1
uses: actions/setup-dotnet@v5.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.101
dotnet-version: 10.0.102

- name: Cache packages
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -79,13 +79,13 @@ jobs:
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v5.0.1
uses: actions/setup-dotnet@v5.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.101
dotnet-version: 10.0.102

- name: Cache packages
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -105,13 +105,13 @@ jobs:
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v5.0.1
uses: actions/setup-dotnet@v5.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 10.0.101
dotnet-version: 10.0.102

- name: Cache packages
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ build-linux:
files: [ packages.lock.json ]
script:
# renovate: datasource=dotnet depName=dotnet-sdk
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.101
- curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.102
- export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
- dotnet tool restore && dotnet cake --verbosity=verbose

Expand All @@ -52,7 +52,7 @@ build-linux:
# files: [ packages.lock.json ]
# script:
# # renovate: datasource=dotnet depName=dotnet-sdk
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.101
# - curl -fsSL https://dot.net/v1/dotnet-install.sh | bash -s -- --version 10.0.102
# - export DOTNET_ROOT=$HOME/.dotnet && export PATH=$DOTNET_ROOT:$PATH
# - dotnet tool restore && dotnet cake --verbosity=verbose

Expand All @@ -66,6 +66,6 @@ build-windows:
files: [ packages.lock.json ]
script:
# renovate: datasource=dotnet depName=dotnet-sdk
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 10.0.101"'
- '&powershell -NoProfile -ExecutionPolicy Unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing https://dot.net/v1/dotnet-install.ps1))) -Version 10.0.102"'
- $env:DOTNET_ROOT="$env:LocalAppData\Microsoft\dotnet" ; $env:PATH="$env:DOTNET_ROOT;$env:PATH"
- dotnet tool restore ; dotnet cake --verbosity=verbose
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGetizer" Version="1.4.6" PrivateAssets="All" />
<PackageReference Include="NuGetizer" Version="1.4.7" PrivateAssets="All" />
</ItemGroup>
</Project>