Hi everyone
I am trying to get the BitBucket pipeline up and running. I have found this article and I tried to follow it. But on dotnet build I always get the error "Couldn't find 'project.json' in current directory".
I have a very basic program and structure:
root
|-TestApp
| |-TestApp.sln
| |-TestApp.csproj
| |-Program.cs
| |-program.json
|-bitbucket-pipelines.yml
The bitbucket-pipelines.yml looks as follows:
image: microsoft/dotnet:onbuild
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- dotnet restore
- dotnet buildAny idea what I am missing?