Daft question but are you sure that you are looking in the right place? The configuration does not specify a build configuration (Debug or Release) each of which will by default have a different output folder. If you are looking in the Release folder and the project is being built in Debug mode then you will not see anything.
To specify a configuration use the following: <buildArgs>/p:Configuration=Debug</buildArgs> or <buildArgs>/p:Configuration=Release</buildArgs> Hope this helps ====================== Dave Carson BEng (hons) There are 10 types of people.. Those who understand Binary, and those who don't..... ====================== 2009/3/16 Hem <[email protected]> > > Hi, > > I used "<targets>rebuild</targets> " its working fine now > but still am not able to get the all the files in > PrecompiledWebFolder. > am getting only below files: > > 1.PrecompiledApp.config file. > 2. bin folder with no dlls. > > > > On Mar 16, 2:30 pm, DilbertDave <[email protected]> wrote: > > I think this is telling you that the project has not changed since it > > was last built - so no action is required. > > > > To force a build you need to specify the 'rebuild' target in the > > configuration; > > > > <msbuild> > > <executable>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe</ > > executable> > > <workingDirectory>C:\Main</workingDirectory> > > <projectFile>Main.sln</projectFile> > > <targets>rebuild</targets> > > <timeout>900</timeout> > > </msbuild> > > > > Hope this helps > > > > Dave > > > > On Mar 16, 9:07 am, Hem <[email protected]> wrote: > > > > > > > > > Hi, > > > i didn't set any iis path. > > > this project is in VS2005 i think no need to set iis path.. > > > > > On Mar 16, 1:53 pm, Ruben Willems <[email protected]> wrote: > > > > > > Hi > > > > > > did you set a path for iis, > > > > eg c:\inetpub\wwwroot\somepath? > > > > > > if so, check in that folder for the new files > > > > > > with kind regards > > > > Ruben Willems > > > > > > On Mon, Mar 16, 2009 at 9:47 AM, Hem <[email protected]> > wrote: > > > > > > > Hi , > > > > > > > From last one month Am using ccnet to build the projects but first > > > > > time am facing below problem . > > > > > If i run the ccnet its showing status as success but in > > > > > PrecompiledWebFolder am getting below files only. > > > > > For all other projects its working fine . > > > > > > > 1.PrecompiledApp.config file. > > > > > 2. bin folder with no dlls. > > > > > > > My ccnet.config file task: > > > > > -------------------------------- > > > > > <msbuild> > > > > > > > <executable>C:\WINDOWS\Microsoft.NET\Framework > > > > > \v2.0.50727\MSBuild.exe</executable> > > > > > <workingDirectory>C:\Main</workingDirectory> > > > > > <projectFile>Main.sln</projectFile> > > > > > <timeout>900</timeout> > > > > > </msbuild> > > > > > > > I tried with Nant their also same problem.. > > > > > > > Error: > > > > > ----------------------------------------------------------- > > > > > > > <?xml version="1.0" encoding="utf-8" standalone="yes"?> > > > > > <msbuild startTime="03/16/2009 12:01:16" elapsedTime="00:00:02" > > > > > success="true"> > > > > > <project file="C:\Main.sln" success="true"> > > > > > <target name="ValidateSolutionConfiguration" success="true"> > > > > > <message level="normal"><![CDATA[Building solution > configuration > > > > > "Debug|Mixed Platforms".]]></message> > > > > > </target> > > > > > <target name="Build" success="true"> > > > > > <target name="Main_CoreLibrary" success="true"> > > > > > <project file="C:\Main\Main.CoreLibrary > > > > > \Main.CoreLibrary.vbproj" success="true"> > > > > > <target name="CoreResGen" success="true"> > > > > > <message level="normal"><![CDATA[No resources are out of > > > > > date with respect to their source files. Skipping resource > > > > > generation.]]></message> > > > > > </target> > > > > > <target name="CoreCompile" success="true"> > > > > > <message level="normal"><![CDATA[Skipping target > > > > > "CoreCompile" because all output files are up-to-date with respect > to > > > > > the input files.]]></message> > > > > > </target> > > > > > <target name="CopyFilesToOutputDirectory" success="true"> > > > > > <message level="high"><![CDATA[PIER.CoreLibrary -> > C:\Main > > > > > \Main.CoreLibrary\bin\Debug\Main.CoreLibrary.dll]]></message> > > > > > </target> > > > > > </project> > > > > > </target> > > > > > <target name="D:\Main\MainWeb\" success="true"> > > > > > <message level="normal"><![CDATA[Copying file from "C:\Main > > > > > \Main.CoreLibrary\bin\Debug\Main.CoreLibrary.dll" to > "D:\Main\Source > > > > > \Main\MainWeb\\Bin\Main.CoreLibrary.dll".]]></message> > > > > > <message level="normal"><![CDATA[Copying file from "C:\Main > > > > > \Main.CoreLibrary\bin\Debug\Main.CoreLibrary.pdb" to > "D:\Main\Source > > > > > \Main\MainWeb\\Bin\Main.CoreLibrary.pdb".]]></message> > > > > > <message level="normal"><![CDATA[Copying file from "C:\Main > > > > > \Main.CoreLibrary\bin\Debug\Main.CoreLibrary.xml" to > "D:\Main\Source > > > > > \Main\MainWeb\\Bin\Main.CoreLibrary.xml".]]></message> > > > > > <custom level="normal" /> > > > > > <message level="high"><![CDATA[c:\WINDOWS\Microsoft.NET > > > > > \Framework\v2.0.50727\aspnet_compiler.exe -v /MainWeb -p > D:\Main\Source > > > > > \Main\MainWeb\ -u -f -d PrecompiledWeb\PIERWeb\ ]]></message> > > > > > <custom level="normal" /> > > > > > </target> > > > > > </target> > > > > > </project> > > > > > </msbuild> > > > > > > > ------------------------------- > > > > > > > where am doing wrong may be i need to change any project > configuration > > > > > settings??? > > > > > Please give me your valuable suggestions... > > > > > > > Thanks .- Hide quoted text - > > > > > > - Show quoted text -- Hide quoted text - > > > > - Show quoted text - > > >
