Hey @Keith Viking
I think you came across documentation that wasn't mean for your use case. Have a look Configure CI/CD with Azure Pipelines - Azure App Service | Microsoft Learn. It walks you step by step how to create your build and deployment pipelines. Really all you need is to configure a service connection, which DevOps will walk you through, and configure you pipeline:
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'publish'
publishWebProjects: true
- task: AzureWebApp@1
inputs:
azureSubscription: '<service-connection-name>'
appType: 'webAppLinux'
appName: '<app-name>'
package: '$(System.DefaultWorkingDirectory)/**/*.zip'
For build configuration, you set this trigger of the pipeline or remove it for now so that you can get up and running.