Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alexander Köplinger
You didn't tell xbuild to build anything and you didn't set a default target in your proj file. FYI, xbuild/msbuild probes for *.proj/*.sln and builds the first it finds when you omit the argument. Can you use a pastebin to attach the actual file you're trying to build? The project is

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Cyd Haselton
I did try xbuild /t:Build Pash.proj. Same result. I will try the --trace xbuild after I rebuild mono again. On June 3, 2015 3:18:34 AM CDT, Alan alan.mcgov...@gmail.com wrote: You didn't tell xbuild to build anything and you didn't set a default target in your proj file. Try `xbuild /t:Build

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
Can you use a pastebin to attach the actual file you're trying to build? The text you attached has two syntax errors in it and would not work as-is. A slightly modified file works as expected for me: https://gist.github.com/alanmcgovern/c2772a9cafd0d6a5b5ee Hope that helps! Alan On 3 June 2015

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Cyd Haselton
Thing is xbuild doesn't even complain about the syntax errors in that project. It doesn't do anything except for output version info then exit. I'll pastebin the file ifthe rebuild I;m working on doesn;t resolve the issue. Thanks! On June 3, 2015 6:18:11 AM CDT, Alan alan.mcgov...@gmail.com

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
You didn't tell xbuild to build anything and you didn't set a default target in your proj file. Try `xbuild /t:Build Pash.proj` On 2 June 2015 at 23:29, Alexander Köplinger alex.koeplin...@outlook.com wrote: Yeah, but it's much easier on another machine since we got the official packages for

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Cyd Haselton
I'm hoping the rebuild I;m currently working on will resolve it. Will report back with results. On June 3, 2015 6:29:53 AM CDT, Alexander Köplinger alex.koeplin...@outlook.com wrote: You didn't tell xbuild to build anything and you didn't set a default target in your proj file. FYI,

Re: [Mono-dev] mono 4.0.0 xbuild won't build project

2015-06-03 Thread Alan
In the file you linked, a default target is set: https://github.com/Pash-Project/Pash/blob/master/Pash.proj#L2 That means if you don't specify a target, 'Build' will be executed (in this case). In the original email i would expect the output to be empty because no target was specified and no