[Opensim-users] monodev target in prebuild

James Hughes jamesh at bluewallgroup.com
Wed Oct 20 06:57:14 UTC 2010


On 10/20/2010 02:04 AM, Jeroen van Veen wrote:
> Did i miss something? monodevelop opens any regular visual studio
> solution fine. Works for me at least :)
>
> Jeroen
Maybe ...

Our solutions were using *.csproj.user files to set the reference path
to assemblies used to build the application. Monodevelop and xbuild
can't use those files. And, while you can use tMonodevelop to read and
edit the sources, the application will fail to build because of the
missing assembly references.

Monodevelop and xbuild need HintPath attributes in our *.csproj files to
find the assemblies ...

                            <HintPath>../../bin/BclExtras35.dll</HintPath>

We get those by adding the path="../../bin/BclExtras35" in out prebuild
files. After getting these right, we are able to edit sources, build and
debug the application within monodevelop. And we can also build  with
xbuild from the command  line after generating the solution and project
files with Prebuild.exe.

BlueWall



More information about the Opensim-users mailing list