Skip to content

Commit

Permalink
Scrub dotnet 6 references (#775)
Browse files Browse the repository at this point in the history
* Remove .NET 6 from PR checks

* Remove .NET 6 references from docs
  • Loading branch information
DaveTryon authored Nov 1, 2024
1 parent 715b12a commit 3f5ac9e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0
with:
dotnet-version: |
6.0.x
8.0.x
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion docs/sbom-tool-api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Users can use the C#-based SBOM API for calling the SBOM tool. This guide is int
## Prerequisites

* A .NET project that can ingest packages from nuget.org.
* Only projects that target .NET 6 or higher. This API currently provides no support for implementation of .NET Framework for the SBOM API.
* Only projects that target .NET 8 or higher. This API currently provides no support for implementation of .NET Framework for the SBOM API.
* Add the **SBOMToolsPublic** repository to the nuget.config. Verify the project configuration by clicking the **'Connect to Feed'** button on the feed page [here](https://dev.azure.com/mseng/PipelineTools/_artifacts/feed/SBOMToolsPublic)

## Installation
Expand Down
4 changes: 2 additions & 2 deletions docs/setting-up-ado-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'
version: '8.x'

- script: |
dotnet build $(Build.SourcesDirectory)/Demo.csproj --output $(Build.ArtifactStagingDirectory)
Expand Down Expand Up @@ -43,7 +43,7 @@ steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'
version: '8.x'

- script: |
dotnet build $(Build.SourcesDirectory)/Demo.csproj --output $(Build.ArtifactStagingDirectory)
Expand Down
4 changes: 2 additions & 2 deletions docs/setting-up-github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

- name: Build
run: dotnet build Sample.sln --output buildOutput
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Build
run: dotnet build Sample.sln --output buildOutput

Expand Down

0 comments on commit 3f5ac9e

Please sign in to comment.