build

ASP.NET Build path and deployment

Hello, Technology: C# ASP.NET WebForms VS2010 I have been trying to create sub web applications that build into a main web application i.e. build path is the main web application as described here: http://blogs.msdn.com/b/webdevtools/archive/2006/07/01/652986.aspx The aim is that I can separate all my website 'apps' separate web appli...

Scons for C# setup question

I use Scons from time to time, and I see it's a good tool for building simple C# project. I guess there should be some modification of Scons for using C#. Can I get some help on how to do this? ...

g++ static library depends on dynamic libraries

I have some static library. for example libpuchuu.a it depends on dynamic library. for example libSDL.so (but of cource I have libSDL.a) Creation of libpuchuu.a is simple: ar -rcs object_file_1.o object_file_2.o But I can't link my project with libpuchuu.a! undefined references attack my console! At some forum I have found such sente...

Building multiple apks from on android app source

The application reads a key from a file to hit production vs test server. I want to create a test apk build that will pick test key and second build apk for release that will pick the production key I am currently building app using eclipse ...

Maven build for different profiles

Hi There, We're trying to migrate from current Ant build to Maven. In the current project, we've different properites files for each of the env say qa.properties, prod.properties & dev.properties. The property values present in these files, are used to replace wherever these properties are being referred through config files (present i...

How to build and test a big web service system for its complete life cycle?

I'd like to know how to build and test a big web service system for its complete life cycle. ex: Google Maps etc. I'd like to know how to do it properly and correctly. I know this a very open question. A general outline would be fine or if you want to be specific that's fine too. I'm interested when all the groups as developers and t...

How to resolve make: *** [sdram] Error 1 at Eclipse

Hello, I'm trying to make a new project at Eclipse to my AT91sam9260 board. This project is based on two atmel examples: basic-ssc-i2s and basic-emac-uip-telnet. But when I'm working with these examples together, appear the error below: make: * [sdram] Error 1 I don't know why, I've been thinking about and I think that is because has...

Post build event to include a file to the project

I'd like to copy a file and include the file in the web project and would like to do this as a part of the Pre/Post build events. My understanding is that these events support DOS commands and I can use xcopy for copying a file, but I am not sure how I would update the csproj file to include the file in the project. ...

Lazy dependencies on a multi-project Maven project

We're considering using Maven for a large multi project build, to give you an idea of the size, some of the sub-projects have several million lines of code. The ideal structure would be something like: projectA module1 module2 projectB moduleAlpha (depends on moduleBeta) moduleBeta (depends on projectA:module1) ... Wh...

can you build apps with xcode 3.2.4 and submit to apple?

hi i have a project built with the 4.1 sdk, I dont have that current sdk. So i am going to download it. The thing is on the apple website, it says download xcode 3.2.4 with 4.1 sdk. Can you built applications with xcode 3.2.4? and then can you send it to apple for submission? or will it not go through submission as xcode 3.2.4 is still...

The executable was signed with invalid entitlements (iPhone build)

Ok I'm no rookie to this stuff. I know what I'm doing, so please dont take me through the basics. I updated Xcode to the newest version the other day, and now every new project and saved projects from the past that HAVE succesfully been built using its own distribution certificate are no longer succeeding with the following error: The e...

iphone how to send my project build to someone else

my work colleague is asking me to send a build so that he can install the application on his phone to test it. I need to send this application to him today. a build that is. not the actualy project just the correct files needed so he can install it on his iphone. Heres what I've done. Ive added his UDID to a new device in the provision...

How to package all my dependency JAR libraries in 1 jar with NetBeans?

I want to build and develop with NetBeans. How can I make Clean + Build operation to generate a single .jar which includes - all my class files - all dependency jars in a "/lib/" folder inside the BIG.JAR I saw there are some scripts and xml-s in the NetBeans project, but could somebody tell me how to do it correctly. Best Regards, L...

What are the pros & cons in creating an automated build system for each project in .Net?

Having just spent a frustrating amount of time configuring an automated build with psake the thought occurred to me why not use the language I know best to create a builder? psake is an excellent framework to create an automated build. The trouble I always have is learning powershell to run more complex tasks. I'm sure the same can be s...

msvc + GNU make

I understand that the fastest and the most lightweight binary at windows generate only msvc compiler Express edition of msvc is free http://www.microsoft.com/express/windows/ but how to use cl.exe instead of g++.exe? is it possible in common by using GNU make variables produce makefiles which will works with cl.exe and g++? for examp...

Build each namespace a .dll file when build an ASP.Net project

Hi all, how to make each namespace a .dll when build an ASP.Net project? ...

TFS 2010 - The server returned content type text/html, which is not supported error, solution?

I have a setup a new TFS 2010 build definition. When I run the build for this build definition I get the following error during a "GET" operation: "The server returned content type text/html, which is not supported" 13:48 Overall Build Process 00:00 Update Build Number 00:00 Create the Drop Location 13:46 Run On Agent (re...

speed up visual studio 2010 build asp.net mvc

Right now our team's ASP.NET MVC 2.0 web project takes about 4 minutes to do build on debug. We have the following things included on our project: t4MVC templates compiling the asp.net mvc's views on all builds My work pc is a Intel core 2 duo T7250 @ 2.00 Mhz. Windows 7 32 bit ultimate 4 gb ram I am also getting the same buil...

Problems with loading resources during execution

Hi, Here's the background of the underlying problem, I am collaborating with a group on a project which uses Swt libraries and I am trying to package the software for deployment. As it turns out SWT is very platform/architecture dependent. I would like to be able to package all six jars (linux, mac, win and 32/64-bit) into the same pack...

MSBuild conditional Exec?

Hi, I am building various projects using the <MSBuild Projects="... markup. I am then executing some command line tools after the project is built. E.g <Target Name="Name"> <MSBuild Projects="" /> <Exec Command="" /> </Target> I notice that the project is only built as required and get the following output when the build scr...