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 build
Any idea what I am missing?
Hi,
I had the same problem so thought I'd let you know what I did. The image "microsoft/dotnet:onbuild" looks for a project.json file in the project root but project.json has been deprecated in .NET Core projects and moved to csproj - https://docs.microsoft.com/en-us/dotnet/articles/core/tools/project-json-to-csproj.
So I'm guessing you just don't have the file it is looking for.
I found another thread where this was being talked about and the advice given there was to use a different image:
image: microsoft/dotnet:1.1-sdk
This worked fine for me, original thread - http://stackoverflow.com/questions/42981831/net-core-bitbucket-pipeline-builds-fail-wants-project-json-when-i-have-cspro
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi!!
Thanks a lot!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was also facing this issue and it was because the project was using .NET Framework 4.x which isn't available with Pipelines. The solution is to instead use .NET Core.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.