solution

Best Visual Studio solution/project structure for client/server project with a shared model

Hi, I am curious what the preferred way to structure an application with an executable client program, an executable server program and a shared model in solutions and projects (using visual studio and C#). Being used to Java development I initially regarded projects as packages and defined a project for each package I designed. This r...

How to refactor Visual Studio's project layout and match up with VSS projects?

I am in the process of upgrading from VS2008 to VS2010 and want to do some cleaning up. My main solution has 20 or so projects under it in a flat file space. However there is a grouping to the projects (some libraries, some client programs, some test programs etc) and I wanted to reorganise the physical disk layout of the projects in t...

CSS Problem with Chrome and first-letter pseudo-element

I have a problem where Google Chrome on Windows places the first letter of the paragraph differently compared to all the other browsers such as IE, Firefox, Safari. The difference is in the vertical placement - the letter appears higher in all other browsers (the same way in every one of them) but lower in Google Chrome, making styling t...

Is there a commercial grade Git server product

Does anyone know of commercial server product for managing GIT repos analogous to FogCreek's Kiln? If any, it would be nice to get some rundown of some most notable features it boasts. PS - it does not have to be necessarily commercial software ... commercially supported would do just as fine, but it has to be installable server softwa...

Loading Visual Studio solution into programmatic instance

I have an F# program that creates an instance of Visual Studio: let vsTy = Type.GetTypeFromProgID("VisualStudio.DTE.10.0") in let dte2 = Activator.CreateInstance(vsTy,true) :?> EnvDTE80.DTE2 in ... That works well; I can probe all kinds of info about the running instance of Visual Studio. But I can't determine how to load a s...

Publish entire solution in visual studio 2008

I know how to publish a single application in my solution by right clicking the project name and clicking properties then going to publish tab. How do you do this for the entire solution so that you only have one installer for all of them? ...

Problem with Visual Studio 2005 Solution

My colleague created a Visual Studio 2005 solution for me and I have copied the entire folder in my machine. The solution contains three different projects. Unfortunately, two of them opens and the third project doesn't with the error message, "The project type isn't supported by this installation". I have installed Visual Studio 2005 wi...

how to speed up the compilation of large c# solutions

Hi, I have a C# solution with about 60 large projects. After a get latest version the compilation takes a lot of time. Do you have similar problems and what should be done? ...

How can I show all internal classes to all projects in Visual Studio solution?

Hello, I have solution in Visual Studio, so this solution contains a few projects, also I have public only interfaces and internal classes, I'll use ILMerge for build one dll from all projects in this solution, Attention :) question, How can I show all internal classes to all projects in solution? Thanks. ...

visual studio 2008 Solution/Project generating

Thank you for reading, I want to auto generate a solution for MS Visual Studio 2008. Why? Well a normal project has dozens of files, h, c, hex, txt, xml and we have to generate a couple different projects each month. Till today it was an interns job to do this work. I tried a couple of thinks but nothing allows me the following: I wa...

Outlook 2010 Addin - contact being saved to default folder instead of custom folder when added programmatically

Hi, I've created an Outlook 2010 addin with VS 2010. I'm using the Solution Module feature to add custom folders in which I want to display items from an LOB SQL database. The cutom folders appear in the Solution Module correctly. If I use Application.CreateItem to create a contact & then call item.Save, it gets saved in the default co...

Does Peterson's algorithm satisfy starvation?

I've been searching information on Peterson's algorithm but have come across references stating it does not satisfy starvation but only deadlock. Is this true? and if so can someone elaborate on why it does not? Peterson's algorithm: flag[0] = 0; flag[1] = 0; turn; P0: flag[0] = 1; turn ...

the best or speedest way to understand uncommented and complex project

I have complex project without comments. The project is programed in Java but have more than one main class, use several .txt files like a template and use several .bat files. I don't know where to start and how to start discovering the project, because I need to make some changes in that project. ...