It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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.
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.
Hello! My name is Mark Askew and I am a Premier Support Engineer for products Bitbucket Server/Data Center, Fisheye & Crucible. Today, I want to bring the discussion that Jennifer, Matt, and ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.