When publishing an asp.net web site in Visual Studio 2008, is there a way that I can force it to ignore the .svn folders in my local working copy so that my target folder does not end up with .svn files as part of the output.
Thanks,
Jason
...
I am currently working with a ASP.NET Web site project in Visual Studio 2008 and everytime I make a change to code behind page for a user control and browse to page that is using the user contorl I get the following error:
Unable to cast object of type
'ASP.basepage_master' to type
'ASP.basepage_master'.
I have to rebuild my en...
I am no longer able to graphically see tables, server or databases in Visual Studio 2008. If I open previously created datasets all I see is the XML as if I had selected view code instead of designer, I have also lost my server explorer window and when I try to re-add it from tools --> connect to server or database nothing happens.
Noth...
I am having several problems with tessdll in Visual Studio 2008. FYI, I created this app as an MFC application, I did this just to take advantage of the simple GUI I needed. It is just straight C++ and win32 from there on out.
This builds fine as a debug release for some reason (as I have included the header files and lib files that I n...
Not sure if anyone else has come across this yet. I like to use a an indent of 2 or 3 and not the default 4 for visual studio because i find my code runs a bit far to the right and I prefer to not code over column 80 for readability's sake. When I change the indent and tabs to 2 using tools >> options >> Text Editor >> C# >> tabs and als...
I've used several Versions of the Delphi IDE for many years. When i'm using Delphi Prism, i have to deal with Visual Studio - in my case especially VS 2008. One of the most annoying things to me is that i have to right-click on my form to switch to the code editor and vice versa. In Delphi, one could simply press the F12 key to switch be...
Code snippets are a pretty underused feature in Visaul Studio and it can really save you alot of time. What custom code snippets do you guys use in your everyday coding?
Let me list some of mine:
vprop - view state property
ane - argument null exception
event - definition for an event handler
noe - expands into String.IsNullOrEmpty(...
I have a web application that I am trying to build and publish. The odd thing is that when I do clean, build or rebuild everything seems fine. When I do a publish though I get the message that the publish failed, but get no further information:
========== Publish: 0 succeeded, 1 failed, 0 skipped ==========
If in the copy section I ...
How can I convert my C# code to DLL file in a way that the user of DLL can’t view my source code?
When I make DLL in the way I always do by making a class library project, importing my classes and compiling it, the source code can still be viewed.
...
Why does Visual Studio want to check-out a File when opened?
I just double click the file to open it and Visual Studio wants to check it out.
I did not make any changes to it. I just opened it.
i.e. In Solution Explorer I double click ctlEmployeeEdit.vb and the first thing Visual Studio wants to do is check-out that file. I got VS set...
I have multiple projects containing multiple WCF service references.
My WCF services are in a state of flux so I frequently have to go around and update all of my service references.
Is there a way to achieve this as a single action?
...
Visual Studio will show errors in an AS?X or HTML file in the Error List window when you have that file open. However once you close the file the error(s) are removed from the Error List.
Is it possible to validate all AS?X and HTML files in one action (ideally as part of building) and show all errors at once?
...
For some reason the integrated debugger is causing an error as soon as I make reference to a third party vendor's dll class. This same code runs when it is built and ran as a release, stand alone. The two properties for debug and release should be the same as I have not really altered them. I added the lib file to the path for both build...
Is there any way to force Visual Studio to copy selected code to the clipboard as unformatted text?
When I am copy-pasting code into Word or more often Outlook I have to do it via Notepad to get rid of the formatting...there has to be an easier way!
...
I'm trying to figure out how it's possible to deploy a Visual Studio add-in to its own folder, rather than using the Addins folder. I know it's possible - tools like ReSharper do it - but I cannot find any info on how to tell VS where the add-in is located. Can someone explain to me how it's done? Thanks!
...
How can I update the system time using Visual Studio with C#(.Net)??
...
I installed IronPython.msi from Codeplex (http://www.codeplex.com/IronPython/Release/ProjectReleases.aspx?ReleaseId=8365) and expected to see an entry for IronPython in VS08 (professional) when I go to create a new project but it is not listed.
Where and what does this install add to my system?
Am I missing something?
C
...
Let's say my class has a private integer variable called count.
I've already hit a breakpoint in my code. Now before I press continue, I want to make it so the debugger will stop anytime count gets a new value assigned to it.
Besides promoting count to a field and setting a breakpoint on the set method of the field, is there any other ...
Is there a way to define code snippets for another language, other then the default ones (C#, VB ...) in VS 2008 ?
I'm using Intel's fortran compiler with Visual studio, and its integration in it is pretty complete apart from the code snippets part. I thought I read somewhere on msdn that you can't define new ones, for other languages.
...
Hello everyone, I know that in markup view Visual Studio will provide you with an enumeration of all the page names in your project (add an element and see what you get from Intellisense when specifying the ImageUrl attribute).
My question is: how do I get to that enumeration?
If that's not possible, what would be the best way in asp....