1
vote
2answers
33 views
How does MSBuild find the Delphi search path?
If I launch the RAD Studio command prompt and run
msbuild /t:Rebuild
in a project directory, msbuild will show the full command line to invoke dcc32, including all path settings.
Which kind of …
0
votes
0answers
7 views
TeamCity build number reporting from MSBuild
Hi,
I'm reporting a build number to TeamCity from my MSBuild script using the following TeamCity task:
This is called from an UpdateVersion task which generates UpdatedVersionInfo from a global …
2
votes
2answers
26 views
Is there a way for a program to detect if it was called by MSBuild or not?
I'm looking in the environment but I can't see anything that I could use. Any ideas?
I'm trying to submit a patch for in Waf a bug that only appears when running the build under MSBuild (...yes I …
1
vote
1answer
34 views
msbuild and visual studio project configuration problem
I have a solution containing a lot of projects and installer projects. One project uses a third party package. The package comes with a native DLL and a .net wrapper DLL. In order for the code to …
0
votes
0answers
7 views
set vcbuild environment through msbuild
I have an msbuild project file that is used for building several C++ projects (*.vcproj). Here's a part of a typical project file, in which global environment variables for the build are overridden as …
0
votes
3answers
27 views
Is it possible to restore a SQL Server database from a virtual drive?
In SQL Server Management Studio, if I attempt to restore a database from a backup file with a command like:
RESTORE DATABASE somedatabase FROM DISK = '<virtual disk>:\<path>\<backup …
0
votes
2answers
41 views
MSBuild and C++
If I am content to not support incremental builds, and to code everything via Exec tasks, is there any reason I can't build C++ binaries with an MSBuild script?
I know VS 2010 will actually have …
0
votes
1answer
19 views
Path Error, YUI compressor .NET
I'm trying to use YUI compressor for .NET as an MSBUILD event
$(MSBuildBinPath)\msbuild.exe "$(ProjectDir)MSBuild\MSBuildSettings.xml"
\p:CssOutputFile="$(ProjectDir)styles.css"
…
1
vote
1answer
33 views
Can you use multiple working folders with TFS?
In projects in which the workspace has only one working folder, my build scripts work great. Now that I am working with a new project that required 2 workign folders, all of the checkout and checkin …
0
votes
0answers
6 views
Setting tail of AssemblyVersion to be TeamCity $(build_number)
I want to set the Assembly number to the following
AssemblyMajorVersion.AssemblyMinorVersion.AssemblyBuildNumber.AssemblyRevision
YYYY-MM-DD-XXX
Where XXX is my TEamCity $(BUILD_NUMBER)
I can …
0
votes
1answer
38 views
Running MSBuild script on development machine
Hi,
I have an MSBuild script which performs a lot of tasks, as it is run on our build server. I want the script to be run each time a developer builds from Visual Studio on their local development …
0
votes
2answers
29 views
Ant doesn’t see when msbuild build failed.
Hi,
As part of my Ant integration test script, I run an MSBuild build (just executing the msbuild.exe), and it works fine in the positive cases. However, Ant doesn't recognize when the msbuild build …
1
vote
1answer
32 views
MSBuild Extension Pack
Is there a way to use the MSBuild Extension Pack with a "local" reference that doesn't require you to run the installer? In other words, can you store the targets in a solution items folder so that …
1
vote
1answer
24 views
Is it possible to batch on item metadata?
Given the following MSBuild project file:
<Project ToolsVersion="3.5" DefaultTargets="DoA" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<A …
1
vote
4answers
117 views
How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?
How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?
I've got two projects I'm trying to build, the first one uses some conditional defines, which are getting passed …
