XBuild is Mono's implementation of msbuild and it allows projects that have an msbuild file to be compiled natively on Linux. xbuild has been part of the standard Mono distribution for some time now, but it is not 100% complete yet. XBuild supports C# and VB.NET projects out of the box. It also ...
3
votes
2answers
104 views
Recursively copy all files with MSBuild
I have the following set of files with MSBuild:
<ScriptFiles Include="Server/scripts/**/*.js" />
I then copy all of it over to another directory:
<Copy SourceFiles="@(ScriptFiles)" ...
2
votes
1answer
34 views
What are the complete set of steps to fully build a Monotouch app bundle from the command line?
I'd like to know what the complete set of steps is to build a MonoTouch C# app consisting of the main application assembly containing xib files and a set of library assemblies that also possibly ...
2
votes
1answer
181 views
xbuild and F# (vs2010) project
I have a VS 2010 mixed-language solution that's primarily C#, but contains a windows service written in F#. I've had this building with xbuild in the in a parallel environment, but since upgrading to ...
2
votes
2answers
211 views
C# Mono on mac - compile and run another project with code
I am trying to build an automatic download, compile & run program for a project just to make it easier for other users on mac and myself so we do not have to do everything over and over as the ...
2
votes
1answer
287 views
What do these Mono/xbuild warnings mean and how do I fix them?
I build VS2010 projects with Mono's xbuild 2.10.5.0. The projects use the '.NET Framework 3.5 Client Profile' as the target framework (they must be 3.5 compatible and I don't need more than the client ...
2
votes
1answer
190 views
Do the MSBuild Community Tasks or Extension Pack work with Mono's xbuild?
Has anyone got the MSBuild Community Tasks or MSBuild Extension Pack working with Mono's xbuild? They both seem to have MSI installer, so I guess it's a case of manually transferring the files to the ...
2
votes
1answer
164 views
Can I call a MSBuild Task from Mono XBuild?
Can I call a MSBuild Task from Mono XBuild?
http://msdn.microsoft.com/en-us/library/ms126274.aspx
http://www.mono-project.com/Microsoft.Build
1
vote
0answers
30 views
Is there a xbuild build task for mdtool?
I'm trying to automate my build process for MonoTouch and Mono for Android and having issues with the MSBuild task. Unfortunately the MSBuild task fails, but mdtool works fine, so I'm guessing ...
1
vote
2answers
68 views
Running a .net executable from an msbuild project in a platform independent way
I'm working on a .NET library, and I want the build script to be so generic that it can run from both the MS .NET framework, and from a mono installation on a Mac/Linux machine.
The problem here is ...
1
vote
1answer
160 views
Mono xbuild error CS1548 - key file has incorrect format
So I'm trying to get a VS2010 C# project to go cross-platform. First goal is build it in Mono 2.10.5 for Windows. I have not touched any code yet - I'm starting with xbuild's recent ability to build ...
1
vote
1answer
98 views
Setting the source file character encoding for Mono's xbuild
I'm generating C# source code which is being built by both VS2010 and Mono's xbuild (2.10.2.0). This generally works very well, I've only had a single compatibility issue so far, and in that case I ...
1
vote
1answer
446 views
How do I make the MSBuild task in Mono's xbuild use the .NET 3.5 framework?
I'm trying to build a MonoTouch project using xbuild (on a Mac, clearly). Here's my xbuild project:
<Project DefaultTargets="Application" ToolsVersion="3.5" ...
1
vote
1answer
654 views
MonoDevelop command line compile a solution
The problem is as follows: I have a MonoDevelop project (ASP.NET) on my development workstation.
I'm currently at a customer site, without my regular development environment on my laptop (Regulatory ...
1
vote
2answers
2k views
How can i build a visual studio solution using xbuild (from Mono)?
I recently downloaded Mono 2 for my new MacBook. I'm trying to figure out how to compile Visual Studio solutions with xbuild, which is included in Mono. Any ideas?
0
votes
1answer
144 views
how to use git command with MSBuild?
I'm thinking about using git submodules to retrieve dependencies of my git repository instead of committing binary files to my main repository (effectively only committing binary files to a different ...
0
votes
1answer
89 views
Trying to get debugging output from Mono NUnit tests
I have a rather large C# library, originally written for .NET and Windows, which we are now porting to Mono and Linux. It is thoroughly unit tested with NUnit. The porting has been fairly simple, ...
0
votes
3answers
207 views
Downgrading MSbuild file from 4.0 to 3.5
I've got a heap of csproj files that were created with Visual Studio 2010 and targeted .NET 4.0.
I am now trying to compile on Mono 2.6.7 with xbuild, however 2.6.7 can't compile verison 4 msbuild ...
0
votes
1answer
446 views
The imported type is defined multiple times - only under xbuild on Mono 2.10.1
Having an issue where compiling some code that makes use of HttpContextBase is throwing the compile error:
UserService.cs(13,26): error CS0433: The imported type `System.Web.HttpContextBase' is ...
0
votes
2answers
473 views
Can't build NUnit testing project under Mono and Linux
I have a complex solution (developed under Windows, deployed under GNU\Linux) with a number of unit-testing projects, using NUnit 2.9.3.
Here's a reference from project:
<Reference ...
0
votes
2answers
352 views
csproj from VS2008 fail to compile with mono xbuild
I use Mono 2.6.4 compiled from source on CentOS to compile a VS2008 project in C#.
Some csproj compile, but this one doesn't, here is the output of xbuild /t:detailed :
...
0
votes
1answer
60 views
building xbuild into visual studio addin
im looking for a way to implement a addin that can convert a C# solution into a mono compiled exe, so i can use it on a linux and mac environment that have the mono framework installed.
0
votes
2answers
232 views
How do I set a property to the output of a command in msbuild/xbuild
In msbuild/xbuild I'd like to have a "libPath" property which can be ovveridden on the commandline using /p:libpath="/path/to/all/libs". But when this property is undefined I want to call pkg-config ...