|
I'm looking for a Visual Studio 2008 add-in / plug-in that can provide Intellisense and flexible code formatting for T-SQL for use with SQL Server 2008. It needs to work with Team System Data Edition ("data dude").
I am familiar with the Red Gate tools...
Started by RickNZ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit: For formatting, you can also use SSMS Tools Pack but again it's SSMS only .
2008 already.
|
|
Can I install code analysis in VSTS2008 SP1 without the original installation media? Is there a seperate package I can download to activate it? I've installed FxCop 1.36 but that didn't automatically activate the tabs on project properties.
I checked ...
Started by Matthew on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
2008
Unless you have a project open, the options don't appear under the 'Analyze' menu option.
|
|
Does Visual Studio 2008 support HTML 5 compliant code generated for browsers?
Started by Ravia on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Visual Studio can validate code that you've written, but not HTML 5 by default....
This is done by the System.Web .NET code.
Visual Studio by itself doesn't gerenate much html.
The user generates the code by writing it and validating it.
|
Ask your Facebook Friends
|
Does the ASP.NET code developed on VS 2008 can be used on VS 2005 ??
Started by Jaison on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
There are some features in VS 2008 that aren't backwards compatible with VS....
In 2008 to write code using C# 3 syntax such as var or => that work find because they are compiliedSadly, the answer is "it depends" and probably "no".
|
|
Can VS 2008 code be opened in any other tool?
Started by Jaison on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
See the Wikipedia.
MSBuild, which can compile Visual Studio 2008 project and solution files directly.
|
|
Like the title says, how do you create custom code snippets in Visual Studio 2008?
Started by Bryan Roth on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The snippets themselves have them: Code Snippets....
Select (or Add) My Code Snippets.
Tools->Code Snippets Manager
To get your list of directories.
SnippetDesigner
The MSDN links are nice, but sometimes I prefer simple tutorials .
|
|
Short of cutting and pasting, is there a way to sort the methods in my classes in Visual Studio 2008? I like orderly code.
Started by Shane on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
ReSharper has Code Reordering functionality and a File Structure.
Functionality to reorder your code.
|
|
Our company is transitioning code from VS 2005. I know they won't be able to use VS 2008 to access it, but we have the patch to enable web access for TFS 2008 applied to our TFS server. This means they can access the source code via the web, but do the...
Answer Snippets (Read the full thread at stackoverflow):
We keep the old TFS ....
Then create a new project in TFS and add the upgraded source code to it.
Just open the solution in 2008 and let it do the upgrade.
We have done several upgrades from 2005 to 2008 and have had no real problems.
|
|
I have downloaded a sample mvc application which has a fair bit of code and quite complex. in order to understand the code i want to step through all of the code line by line as i complete basic functions via the gui. problem is i am not always sure which...
Started by Cunners on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The only time I have seen it execute "out of order" is with Xcode when certain compiler... .
Update: Okay, RE your comments: Code executes in an inorder line by line fashion.
You can then step over or step into every line there after .
Of code.
|
|
How do I find dead code in a Visual Studio 2008 C# project? Like unused classes, unused variables or unused resources?
Started by Holli on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
FxCop is an application that analyzes managed code assemblies....
You just have to right click the project file and 'Run Code Analysis'.
You can try FxCop , which is integrated in Visual Studio 2008 by the name of Code Analysis.
|