You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
i am getting below two errors while running job using bamboo CI
Error 1:
E:\bamboo-argument home\xml-data\build-dir fremework.csproj error: this project references Nuget packes that are missing on thiis computer
System.Data.SQLite.Core.targets
Error 2:
C:\program Files x(86) \MSbuild\14.0\bin\amd64\microsoft.common.currentVersion.targets :error MSB6003. The specifed task executable "cmd.exe" could not be run
the working directory "..\solution bin\"" does not exists [E:\bamboo-agent-home\xml-data\build-dir\IR-MuTE-New\UIproject.framewrk.csproj]
Hi Bharat
The first error seems to be related to Package Restore configuration, the following Microsoft documentation explains how it works and how to set it properly:
In the second error, seems that MSBuild is not being able to find the "..\solution bin\" folder in the build directory.
I'm not a C# specialist but you might need to add a system variable instead of a relative path (or just make sure the relative path do exist) to this property, please see the example below:
... <OutputPath>$(bamboo_working_directory)\Binary\</OutputPath> ... <Target Name="Build"> <MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" /> <Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" /> </Target> ...
Reference: How to: Use Environment Variables in a Build
In the example above, I'm using a bamboo variable to get the bamboo buil working directory path.
Did you try to run this same build from outside Bamboo? Did it work?
thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.