[MonoDevelop] .csproj file compatibility
Steve Lessard
s_lessard at yahoo.com
Wed Oct 19 15:13:20 EDT 2011
Visual Studio has the ability to handle environment variables in .csproj
files. For instance instead of a Compile element like this:
<Compile
Include="\source\corpnet\OCG\lcs\plat\dev\common\Platform\CollaborationApi\cs\Signaling\AuthenticationException.cs">
<Link>Signaling\AuthenticationException.cs</Link>
</Compile>
I can replace a portion of the file's path like this:
<Compile
Include="$(SOURCE_ROOT)\dev\common\Platform\CollaborationApi\cs\Signaling\AuthenticationException.cs">
<Link>Signaling\AuthenticationException.cs</Link>
</Compile>
Out of the box MonoDevelop doesn't appear to know how to interpret these
variables. Is there any way to get MonoDevelop to interpret these
variables in a .csproj file?
-SteveL
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/monodevelop-list/attachments/20111019/0822adb7/attachment.html
More information about the Monodevelop-list
mailing list