Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 582 Bytes

UseDotNet.md

File metadata and controls

32 lines (25 loc) · 582 Bytes

UseDotnet Task

Azure DevOps Input

- task: UseDotNet@2
  displayName: 'Use .NET Core sdk'
  inputs:
    # packageType: sdk
    # version: 2.2.203
    # installationPath: $(Agent.ToolsDirectory)/dotnet

Also supports DotNetCoreInstaller@0 and DotNetCoreInstaller@1

Transformed Github Action

  - name: Use .NET Core sdk
    uses: actions/[email protected]
    with:
      dotnet-version: 2.2.203

Unsupported Inputs

  • packageType
  • useGlobalJson
  • workingDirectory
  • includePreviewVersions
  • installationPath
  • performMultiLevelLookup