Jul 20, 2016 at 2:33pm UTC
I am using Visual Studio Community 2015, and I am working on a team project to make a text RPG.
The problem is when I try to build the program, it says:
========== Build: 0 succeeded, 0 failed, 1 up-to-date, 0 skipped ==========
When it said "0 succeeded" that means it failed, so you would expect to see "1 failed" but instead it says "0 failed" and it doesn't build.
Is it possible that it is because it is a Team Project using Microsoft Team Services?
Last edited on Jul 20, 2016 at 2:50pm UTC
Jul 20, 2016 at 2:56pm UTC
> 1 up-to-date
I guess that your program already build correctly and you did not made any changes and tried to build again, so it's telling you that there is no need to rebuild
Jul 20, 2016 at 2:59pm UTC
while (stealth + strength + charisma + constitution + magic > 30 && stealth + strength + charisma + constitution + magic < 10)
This will never be true so you can't input these values.
For others: This is a C++/CLI console app.
Jul 20, 2016 at 3:02pm UTC
Thomas1965 , yes, I saw that and made the change but the other problem still is in affect. ne555 , I have made some changes to test that theory, and it still says the same thing.
Jul 20, 2016 at 3:05pm UTC
The project/solution is up to date, there is no need to build again. Your code base hasn't changed.
Try rebuilding the project/solution.
Jul 20, 2016 at 6:18pm UTC
It worked, thanks for your help
Jul 20, 2016 at 6:23pm UTC
When in doubt, always rebuild.
Sometimes errors that creep in from object files not being updated properly can be corrected when doing a full rebuild. :)