Tagged Questions
0
votes
0answers
8 views
Publishing external configuration files in ASP.Net MVC project using Visual Studio
I have a ASP.net MVC 4 web application and web.config is referencing some other external config files (e.g. ).
When publishing the website only web.config gets published and none of these external ...
0
votes
0answers
35 views
Configure VS2010 having VS2012
I had Visual Studio 2012 and then I installed Visual Studio 2010. VS2012 is always working correctly but I have problem with VS2010. When I run template projects I have errors:
error C1083: Cannot ...
1
vote
1answer
53 views
Where is the currently selected “Solution Configuration” option stored in VS 2010 or 2012?
In VS 2010, or VS 2012, you can pick a "Solution Configuration", that has been custom defined, that can define local variables used with the #if #elif #endif syntax to change your code dynamically ...
2
votes
3answers
179 views
slow cheetah xml transformation tool is overwritting the original config
I am using slow cheetah web config transformation tool for transforming connection-string.config according to deployment settings. Problem is after transformation it overwrites the original ...
0
votes
1answer
93 views
Сreate new project configurations checkbox grayed out
I'm attempting to create multiple web.config files for an existing web site(not a project). When creating a new configuration, the Create new project configuration checkbox is grayed out. I cannot ...
1
vote
1answer
61 views
When to use Release configuration in Visual Studio for SharePoint solutions?
I develop SharePoint solutions mainly for SharePoint 2010 with Visual Studio 2010.
The regular SharePoint solution development outputs mainly assemblies, which is deployed to GAC and used by other ...
0
votes
0answers
17 views
How to modify build configuration behavior in VS?
I already read about Debug/Release difference and Understanding Build Configurations
But in build configuration, all I can set is the project platform and whether to build it or not.
I want to set ...
0
votes
0answers
24 views
Force a full rebuild inside the Run-Only configuration in Visual Studio
We have a ton of projects. I like to use a Run-Only configuration, where every project is set to not build, and use the Build-Selected command to build only what is needed.
However, after syncing ...
5
votes
1answer
255 views
Can multiple build configs share one config transformation?
I'm using SlowCheetah for XML transforming a bunch of config files in a project.
However, this same solution is part of a load balanced setup, where some config values differ between the different ...
0
votes
1answer
155 views
TFS 2010 cloaked database flag
In a TFS 2010 collection database, where is the database flag the identifies if a folder is cloaked within TFS?
0
votes
0answers
109 views
Visual Studio : How to switch between test / production databases quickly?
I'm working in a solution which includes a windows service host project that uses a single app.config file which contains everything the service needs (logging configuration, WCF configuration, custom ...
1
vote
1answer
95 views
F#: Is the Condition attribute not supported in some (or all) tags in .fsproj files?
For an F# project with dual platforms "Xbox 360" and "x86," I have the following in my project file:
<ItemGroup Condition="'$(Platform)' == 'Xbox 360'">
<Reference ...
3
votes
2answers
166 views
Why is my Configuration Manager blank in Visual Studio?
Recently, on a few solutions I've been working on, the Configuration Manager dialog displays empty fields for 'Configuration' and 'Platform', and 'Build' is always unchecked. Changing values and ...
1
vote
0answers
521 views
Can anyone explain the major features of a VDPROJ file? [closed]
I'm sure there must be some documentation on MSDN somewhere, but I couldn't find it. It looks like some subset/variation of JSON. Really, this question grew out of something that has always bugged ...
1
vote
1answer
5k views
System.Configuration.ConfigurationManager.ConnectionStrings has no connection string configured
Whenever I try to run anything in my C# code I get the following error:
System.InvalidOperationException was unhandled by user code
Message=No connection string configured
and it happens in the ...
1
vote
2answers
131 views
Custom type and using Settings Designer for use with persisting user settings
I have created a custom config type using the custom configuration designer (http://csd.codeplex.com/).
This works fine when using as per normal by declaring in .
However if I wanted to store the ...
0
votes
4answers
111 views
How to tackle machine-dependant configuration with SVN and VS2010?
To start with some background, I am a member of a small team developing an ASP.NET application. In addition to us, there are 2 other teams working on it, all from different countries. Source code is ...
0
votes
2answers
76 views
How can I change the release type programatically?
I have some specific code that runs in debug mode and other code that runs on release mode. I'm trying to write some tests to ensure that only code that is supposed to run based on the configuration ...
0
votes
0answers
208 views
SAPI Version on Win XP Laptop
I have a Win XP Pro laptop. I wanted to use the Speech API in some of my VB.NET projects. However, when I opened the Add Reference dialog in Visual Studio, I got Microsoft Speech Object Library 5.0. I ...
1
vote
1answer
2k views
CMake visual studio debug/release config
I'm setting up my visual studio project to use CMake, but I got two issues I haven't been able to solve yet.
1 How can I set a preprocessor define for Release and another for Debug?
2 I have a ...
1
vote
1answer
229 views
Can't find VS2010 setting in custom fonts and colours for numerics in .sql files
In Visual Studio 2010, does anyone know how to change the custom font colour for numeric characters in .sql files? Here is an example of the problem I have:
and
Black characters against my dark ...
0
votes
1answer
146 views
Creating Visual Studio Solutions that load different Prism Modules / Have a unique configuration file
Right now I have a solution that contains all of my Prism Modules, a start-up project, and a configuration file to load all of the modules.
What I would like to do is create various solutions, that ...
20
votes
4answers
7k views
How to select different app.config for several build configurations
I have a dll-type project that contains MSTest integration tests. On my machine the tests pass, and I want the same to happen on a CI server (I use TeamCity). But the tests fail, because I need to ...
0
votes
0answers
717 views
Windows SDK Configuration Tool Can't See Visual Studio 2010
I've installed Visual Studio 2010 and the Windows SDK 7.0. I want Visual Studio 2010 to use Windows SDK 7.0 instead of Windows SDK 7.1 (or another SDK). So I ran the Windows SDK Configuration Tool and ...
0
votes
1answer
85 views
Creating 2-level (not 3-level) custom configuration sections in .NET
I know that there are tons of links about creating custom configuration sections out there, and tens of related questions has been asked here before. But I couldn't solve my problem.
I'm able to ...
7
votes
1answer
655 views
SQL SMO assemblies not being deployed when publishing
I've got a little problem regarding the deployment of a number of assemblies related to SMO. I have the following 5 references in my project:
Each one is a .dll in a libraries folder which is where ...
1
vote
2answers
163 views
WebSetup Installer for configuring IIS settings
I have created a websetup using Visual Studio for deployment of a web application.
How can i get it to setup additional IIS settings ?
Like setting up wildcard, virtual directory, permissions, ...
3
votes
1answer
484 views
NUnit running in visual studio with coderush or testdriven.net “no tests found”
My company has been using MSTest and NUnit. I am now switching us over to only use NUnit.
The code is riddled with architectural problems, so we can just ignore those and work on how to get it to ...
2
votes
3answers
2k views
Should I define both _WIN32 and _WIN64 in 64bit build?
When we add a 64bit configuration from a 32bit project that has already existed, Visual Studio copies the 32bit configurations by default. VS even copies _WIN32
All my 64bit projects define also ...
2
votes
1answer
214 views
Visual Studio C# reference-warning
After compiled, my solution has a warning as below snapshot.
Double clicking the warning will popup a question which I have no idea what it is.
If you understand what VS is talking about, please ...
1
vote
2answers
2k views
How to configure Visual Studio (2010) to open aspx pages on code behind by default on double click?
The question says it all... its pretty simple, and it can be done by selecting the file and pressing F7 but I'm always double clicking accidentally and visual studio takes forever to open the design ...
1
vote
0answers
183 views
Visual Studio generating exe even though nothing has changed?
I ran into this issue where each time I switch between Release and Debug configuration of a C# solution and do a build, Visual Studio always seem to generate a new version of the executable even ...
1
vote
1answer
171 views
.NET config cheat sheet
Does anyone know of any good references for Microsofts configuration files. I always need to change them manually and have never found a reference for them in the Forest of msdn documentation.
...
0
votes
1answer
319 views
Visual Studio configuration problem after upgrade to VS2010 / XNA 4
I'm attempting to migrate a project from XNA 3.1 in VS2008 to XNA 4 in VS2010.
I realise that there will need to be some code changes, but the problem I am currently facing is that, having been ...
0
votes
2answers
461 views
OpenCV and Visual Studio configuration
In Learning OpenCV, it mentions the following regarding configuring OpenCV and Visual Studio:
In Visual Studio, it is necessary to
create a project and to configure the
setup so that (a) the ...
1
vote
1answer
1k views
Reporting Service deployment error - Connection could not be made to the report server
i'm using sql server 2005 and i tried to make a reporting service project using Microsoft Visual Studio 2005 but when i make a deploy my report to my Report Server i got this error !!
Microsoft ...
4
votes
2answers
1k views
Why did my WPF 3.5 app gain an app.config file when I changed the target framework to 4.0?
I changed the target .NET framework of my WPF app from 3.5 to 4.0.
After making this change, I noticed that an app.config file was generated by VS2010 and placed in the main project folder. Its build ...
0
votes
3answers
297 views
Set VS DefaultLocation based on build configuration
Any ideas on how to get the Default location of the Application Folder, to depend on the Build configuration? (Debug vs Release vs Release_Special)
so if it's on release it will default to c:\Program ...
4
votes
2answers
3k views
Configuration files in Silverlight
I am writing a plugin for Seesmic Desktop 2, and this being my first time using Silverlight, I have a question:
Writing Windows apps, we have the application configuration file e.g. MyApp.exe.config ...
6
votes
1answer
3k views
Difference between platform and platform target in VS
What's the difference between setting the platform -->
over setting the platform target in Build -->
0
votes
1answer
851 views
Web.config Transformations in VS2008
Someone had asked me if you can perform config transformations in Visual Studio 2008. I know you can as I do remember several articles on this. However, I can't seem to find any of the links as of ...
3
votes
3answers
698 views
What is the purpose of debug/release configurations in Visual Studio 2008/2010 compiling to different folders?
What is the point of compiling assemblies to separate folders? At my work we have 50+ projects which live across a few different solutions. When projects are in the same solution you can set a ...
3
votes
2answers
755 views
Modifying application settings in unit tests
I have a class library I want to unit test using Microsofts unit test framework. Some of the classes I want to test are configured using application settings. These settings are defined inside the ...
15
votes
9answers
3k views
developer specific app.config/web.config files in Visual Studio [closed]
we have several .net projects where we store certain settings in config files.
Now each developer will have their own config files that differ a little (different connection strings to connect to ...
1
vote
2answers
1k views
How to change Visual Studio 2010 context menu size
I have enough vertical spaces up and down but Visual Studio context menu restricts context menu and made itself scrollable.
Is there a configuration option to change the behavior of how context menu ...
0
votes
1answer
81 views
Code to be executed only when application is run outside of visual studio?
I have a WPF windows application that makes a call to a DLL for registration.
I need this code to be called only when the application is run outside of visual studio.
In other words, when clicking run ...
1
vote
2answers
2k 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 ...
3
votes
6answers
142 views
Is it OK to have a single configuration, rather than separating Debug and Release (in our case)?
We develop a product for internal customers. We don't have a QA team, and don't use assertions. Performance is important, application size isn't.
Is it a good idea to have a single configuration ...
12
votes
5answers
3k views
tokens in visual studio: HACK, TODO… any other? [closed]
what tokens do you find useful in visual studio?
(visual studio 2010 → environment → task list → tokens)
currently i have only:
HACK - low
REVIEW - high
TODO - normal
WTF - high
(only these - ...
1
vote
1answer
222 views
Visual Studio 2008 project configuration changes by platform/configuration
I've got about two dozen projects here in one solution that need changes to the include paths. I can go through and change each one, but what's really annoying me right now is that it looks like I ...
