project

[Team Build] Build is successful, but binaries are nowhere to be found. Why?

Recently I've changed our team build project file from: <SolutionToBuild Include="$(SolutionRoot)/OurSolution.sln"> to <SolutionToBuild Include="$(SolutionRoot)/**/*.csproj"> This was necessary because we have many projects which are not contained in the solution file, and for our purposes it is not feasible to just add the project...

How to measure software development progress

I would like to help my project manager (a non-programmer) track how quickly things get done. We have a detailed requirement spec in DOORS that allow us to track completed requirements. I have suggested this as a reasonable tracking mechanism. ...

Computer science final year project ideas

I'm a Computer Science undergraduate student in UK and should be deciding the subject of my final year project soon. The school is pretty flexible with the subject... "The topic can be any area of the subject which is of mutual interest to both the student and supervisor. Topics can range from purely theoretical studies to practical wor...

Retrieve/Recover deleted Netbeans project

Hi there, I was just working on my Netbeans project and accidentally deleted it and don't know how to recover it. Is there a tmp folder that the deleted project is stored in. Or am I forever doomed? Thanks, Lucas ...

Flex Project Structure

I am trying to create a large flex project. This Project consists of a CORE application, and other sub-applications. The CORE application should contain information that will be shared by all other projects (e.g., link to database, data manager which loads data from the database, application information like height width colors fonts......

Programming languages project using Scheme

Im interested in doing a programming languages project using scheme. A couple that i have considered - A scheme extension interpreter in Scheme(metacircular) - The thing is that a lot of these already exist and its not too challenging. Implementing a Domain-specific language. This one is good, but I cant think of any domain which whi...

VIM Project and Tabs

Is there a possibility to combine the Project Plugin with Tabs? If i open a file in my Project Explorer, i want to open it in a new tab ... :) ...

xcode can't find a standard c++ include file

When i mix .m and .cpp i have a problem with xcode not finding the default cpp include (like <map>) update: i'm adding a static lib in my iphone project (which does compile without any problems) and then use the include inside the .m, then the dependencies .h from c++ gets crazy..can't find or can't compile, i tried the .mm but it does...

iPhone Xcode Project Organization Question

I built a simple iPhone application for a customer This will be distributed via iTunes using Ad Hoc Provisioning profile I need to build two different executables 1) a test application and an 2) official application the only differences between the two applications are: . the Default.png startup screen . some image icons in the applicat...

In a software project, how would you differentiate a Component from a Module?

In a software, how would you differentiate a Component from a Module? ...

Adding a dll file to a C# project

It's a beginners question, but... If you look at the image above, there is the "Bass.Net" dll added as reference and also directly as file in the project. Can someone tell me what's the point of doing that? ...

Is excessive use of lucene good?

In my project, entire searching and listing of content is depend on Lucene. I am not facing any performance issues. Still, the project is in development phase and long way to go in production. I have to find out the performance issues before the project completed in large structure. Whether the excessive use of lucene is feasible or no...

(C#) How to set an project's executable processname?

Hello. I'd like to have my executable's process be called ABC. How I can do this? I tried defining my project name to ABC, but then I'll have an ABC.vshost. Thanks ...

Working with dlls in MSDN - books for reference?

Despite having reasonable experience in C++, I am still pretty useless in setting up projects/workspaces for libraries, linking to libraries from the main project, setting up the project so that I can debug into them, etc. I mainly use MSDN for development. Does anybody know of any books which will explain 1. how to set up different ki...

Development, Staging environments, and more - questions !! :(

Hello, Here's my story, Sort of long - please bear with me :) I am currently the only programmer here, no much designing to do - yet. When I started, we had no source control, - files where edited directly from a "development" server - which used rsync to sync to production servers. I have not had much experience doing this kinds of...

Xcode - renaming project causes problem

I'm currently working on an iphone application. I started working on this from a project template that I found on the internet. Now I want to rename this project. I've successfully renamed the actual project file, folder and the executables and some other stuff, but there is one weird problem. If I try running the application on my iphon...

How can i close collapse property of treeview

I m working on windows project with c#. I want to close collapse property of treeview when i m double clicking on the nodes. ...

Msbuild doesn't copy references (dlls) if using project dependencies in solution

Hi, i had a look on many similar questions on this side but none of them answered the question to my problem. The whole day i tried to solve this by finding a solution (via google etc.): I have 4 projects in my VS solution (everyone targeting .net 3.5) - for my problem only these two are important: MyBaseProject <- this class library...

MS Project library

Does anybody know of a good library for reading/modifying ms project files? ...

VS 2008 C# : Class library is not accessible in another class library in same solution

I have a solution in VS 2008 which has one web project and 3 Class libraries as 3 different Projects. One project is for DataAccess and one is for BusinessLogic. I have a class in DataAccessLayer. From there when I am trying to access the Class of BusinessLogic class library (project) it is not coming in the IntelliSense when I type....