kind: pipeline type: docker name: myFirstPipeline trigger: event: - push steps: - name: build image: mcr.microsoft.com/dotnet/sdk:7.0 commands: - cd Sources/ - dotnet restore MySolution.sln - dotnet build MySolution.sln -c Release --no-restore