Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
4k views

How to upgrade IIS 6 web app, so it opens in visual studio on machine running IIS 7

My web apps created in VS 2008 on Windows Server 2003, refuse to open in VS 2008 on Windows Server 2008. "The Web Application project 'MyProjectName' is configured to use IIS. To access local IIS ...
4
votes
4answers
97 views

Bad to leave unused default assemblies in the reference folder?

There are usually some that I don't use in whatever project I'm working on (System.XML, System.XML.Linq for example). Are there any drawbacks from leaving default assemblies that I won't be using ...
3
votes
2answers
364 views

How to automatically include generated source files into a C# project in Visual Studio?

I have a situation where I need to generate a bunch of C# code files in a prebuild step of a project and include the generated files into the current project for compilation. Is there a way to do this ...
2
votes
4answers
2k views

Creating setup project with single output file (Visual Studio 2005)

I'm using visual studio 2005 Setup project to create an installer for my application. The outputs of the setup projects are: - Setup.exe (a bootstrapper which makes installed .Net framework if it ...
1
vote
1answer
258 views

Convert C# 2008 files to C# 2010

I've got a program which i made on one machine in which i used C# 9 to make it in and i now want to run it on my other machine which uses C# 2010. I opened the program in C# 2010 and use the embedded ...
1
vote
1answer
128 views

How to read\write settings from a Visual Studio Project file using NuGet?

I'm interested in creating a NuGet package for a documentation tool I'm writing. Ideally, I'd like the user to not have to configure my tool in anyway. In order to do this, I need to be able to read ...
1
vote
3answers
318 views

How to enumerate C# project files and update the header of a file?

Can somebody help me on enumerating a C# project files and update the cs file headers in Visual Studio 2010? Any helpful code snippet or a pointer to that would be highly appreciated.
1
vote
2answers
720 views

VS 2010 Database Project - Different Connections

I have an application that I'm developing in Visual Studio 2010 that utilizes a SQL Server database. As such, I am using a VS SQL Server 2008 Database Project. The database project requires a target ...
1
vote
2answers
68 views

How can I access the currently opened project's types(classes) from a Visual Studio add-in?

How can I access the currently opened project's types(classes) from a Visual Studio add-in(be able to create instances of those classes within the add-in)? Is this possible through reflection? Or ...
1
vote
2answers
245 views

Setting up a build dependency without using a reference?

All: I am working on a solution where one of the projects is actually plug-in to the main exe that the solution builds. Since this one project is a plug in, it's wrong to reference the plug-in from ...
0
votes
0answers
41 views

Reusable windows service project

I've made a windows service with a timer (I've seen discussions about timer-driven windows services vs windows task scheduler, and still want to go with my own windows service) that runs some business ...
0
votes
1answer
66 views

Order of AfterBuild tasks in Visual Studio projects …?

I have defined several AfterBuild - Tasks in my Visual Studio project with different conditions: <Target Name="AfterBuild" Condition="'$(Configuration)'=='FinalBuilder'"> <Message ...
0
votes
1answer
42 views

What are Visual Studio project references?

I came across the Framework and References tab of my project and noticed that I can "Add New Reference..." to my project, what is this functionality?
0
votes
2answers
185 views

External tool (esriRegasm.exe) fails during build. Where in my VS project is it executed?

I am trying to compile a sample from ESRI and I get this error Error 1: The command "esriRegasm.exe CommandInheritingBaseCommand.dll" /p:Desktop /s" exited with code -1. So, there must be a ...
0
votes
2answers
117 views

What are the registry keys that detects an installed application?

This application is not working right now, and i want to remove it, to install another one. The problem is that the uninstall/repair is not working because he's not able to find the service to ...
0
votes
1answer
477 views

Build Visual Studio Projects from Jamfiles?

Anyone know of a way to create Visual Studio Projects from a build based on Jamfiles? I'd settle for a jamfile -> XML-or-some-other-intermediate-format exporter tool, so I could write my own.
0
votes
2answers
2k views

Team Foundation Server - Cannot add new project [closed]

I am logged in as administrator I click on add new project on my TFS Server. I give a name to the project than select a process template for the new Team Project ( the process template is MSF for ...
0
votes
2answers
634 views

Visual Studio C++ project management. How do I handle non-code files in a project?

I have a project in a c++ solution. For that project, I have some config files that I would like to manage from within the project and when I build the project, have those config files added to the ...