Microsoft Visual Studio is an IDE from Microsoft. It is used to develop console and GUI applications along with Windows Forms applications, web sites, web applications, and web services in both native code together with managed code for all platforms supported Microsoft's Operating Systems. Visual ...
17
votes
6answers
6k views
C++11 features in Visual Studio 11
A preview version of Visual Studio 11 (the next version after VS2010) is now available.
Does anyone know what new C++11 features it supports? (I'm not in a position to try it out at the moment).
14
votes
4answers
864 views
Can Visual Studio 11 Developer Preview be installed side-by-side w/ Visual Studio 2010?
Will Visual Studio 11 Developer Preview interfere/break .NET 4 and/or Visual Studio 2010 if installed side-by-side on the same instance of Windows?
I plan on installing it in VM, but I know others ...
10
votes
1answer
350 views
What is special about the executables compiled with Visual Studio 11 which results in that the executables cannot be executed on Windows XP?
I compile my C++ source code with Visual Studio 11 Developer Preview. I statically link to the runtime library.
The resulting executable cannot be executed on Windows XP. When I try to execute it on ...
9
votes
2answers
775 views
How to Distribute Compiled Windows 8 Metro Applications without Windows Store?
I am just curious if there is a way to package up a Windows 8 Metro application to distribute it to others with the Windows 8 Developer Preview installed? It would be nice to be able to allow someone ...
7
votes
1answer
163 views
What does the “Prefer 32-bit” compiler flag mean for Visual Studio 11 managed apps (C#, VB)?
Just got the Visual Studio 11 developer preview installed. I see a new option in the project properties called "Prefer 32-bit" when compiling a managed (C#, VB) application with the AnyCPU target ...
7
votes
5answers
646 views
Metro style Apps with F#?
In the Build 2011 keynote and demos I looked at they where always talking about C++, C#, Visual Basic and JavaScript. Can't I build Metro style Apps with F#? Or is it eligible to say if it works with ...
6
votes
1answer
342 views
Boost compiling with MSVC 11
How to build Boost (I tried version 1.48.0) with Visual Studio C++ 11? bootstrap.bat cannot find toolset vc11. I added toolset vc11 to F:\Programming\boost_1_48_0\tools\build\v2\engine\build.bat but ...
6
votes
2answers
167 views
Why are button clicks slow in VS 11, and how to fix it?
Here is a simple test application (in F#, but I checked and the same problem occurs in C#):
let but = new Button(Content = "click me")
but.Click.Add(fun e -> printfn "clicked")
[<STAThread>]
...
6
votes
3answers
2k views
.NET 4.5 or .NET 5, Visual Studio 11 or 2012 [closed]
Please help me to understand new versions of .NET and Visual Studio. I read articles where it was described features of .NET 4.5, and in others it was referred to as .NET 5. For example is async/await ...
6
votes
1answer
2k views
WinJs in the browser?
After playing a bit with the new Visual Studio 11 preview, I think the most interesting question is how can I make my new javascript based app run also in the browser with minimal changes? is that ...
5
votes
2answers
444 views
Open an exising MVC 3 project in visual studio 11 developer preview
I've trying to open and convert an existing vs 2010 mvc 3 project in the new dev 11 preview and am running in to a difficult issue. The solution file will convert successfully, however the one mvc 3 ...
4
votes
3answers
323 views
MSBuild does not contain a value for the “VCTargetsPath” property
I recently installed the Visual Studio 11 Developer Preview to try it out, and now my VS 2010 projects won't open. Instead, I get the following error message:
MSBuild does not contain a value for ...
4
votes
2answers
184 views
Can I distribute applications written using Windows 8 Developer Preview and Visual Studio 11 Express
I've downloaded the Windows 8 Developer Preview and have been working on some simple Metro UI application.
Can I post the source code to Github?
Is it legal to publicly distribute application ...
4
votes
2answers
313 views
Visual Studio 11 Developer Preview IntelliSense can't open F# modules?
Bug or Am I doing something wrong ?
Error 13 The namespace or module 'BModel' is not defined
Error 12 The namespace or module 'Connector' is not defined
Error 11 The namespace or module ...
4
votes
5answers
122 views
Create Folder o Save in Temp
I have Visual Studio 11 (Windows 8 Developer) i have create a downloader file:
string sUrlToReadFileFrom = "http://mysite/1.mp3";
int iLastIndex = sUrlToReadFileFrom.LastIndexOf('/');
string ...
3
votes
1answer
135 views
c++11 thread_local keyword support in visual studio 11
So there's a list of c++11 features supported by visual studio.
thread_local support is marked as partial. I was unable to find an explanation of what exactly partial support means here. Did they ...
3
votes
1answer
202 views
Is the dropped support for Windows XP in VS11 comparable to prior Visual Studio releases?
As established here: What is special about the executables compiled with Visual Studio 11 which results in that the executables cannot be executed on Windows XP?
and in this Connect bug/issue: ...
3
votes
2answers
253 views
Does Resharper 6.0 (current version) support Microsoft Visual Studio 11 Developer Preview or can it be made to?
I've read articles that explain how to enable Visual Studio 2010 managed extensions to get them working with Microsoft Visual Studio 11 Developer Preview
Running VS2010 Gallery Extensions In VS11, ...
3
votes
2answers
238 views
VS 11 does not pay attention to install location
I've download VS 11 Developer preview. I do not have sufficient disk space in my C drive, so I entered "E:\Program Files\Visual Studio 11\" as the install location and the installer continues, but ...
3
votes
1answer
484 views
cannot install visual studio 11 preview [closed]
I use vista sp2 and have vs 2005/8/10 installed.
I try to install vs 11 preview using the web installer but immediately get a message "setup blocked" (see image). the linked log just has many lines ...
3
votes
1answer
669 views
VS11 Dev Preview deployment error
I am trying to deploy my C# app to my Windows 8 Metro desktop. I can see the deployed files in the bin folder but when i try to open them i get the following error:
This application can only run ...
3
votes
2answers
358 views
Visual Studio 11 Dev Preview: Cannot delete thumbs.db
I'm running into a serious issue with my development workflow in Visual Studio 11 Developer Preview under Windows 8 Developer Preview. Here's what I am seeing and other friends are seeing the same.
...
2
votes
1answer
56 views
Non-rectangular data wrappers for AMP?
I'm experimenting with the Visual Studio 11 Dev Preview. I've got a problem domain which requires the use of "jagged" arrays, i.e., an array of arrays where the second dimension is not of uniform ...
2
votes
1answer
109 views
Visual C# SQL CLR Database Project on Visual Studio 11 Developer Preview
I am unable to find Visual C# SQL CLR Database Project on Visual Studio 11 Developer Preview. Only thing which is related to SQL Server is SQL Server Database Project.
What is the way of developing ...
2
votes
1answer
98 views
How do I embed a resource into an appx package?
I'm trying to include data files, or images in a C# appx package. I've tried adding the files to the csproj, and enabled "Copy to Output Directory", but they don't wind up in the AppXLayouts dir.
I ...
2
votes
2answers
204 views
Suitability of Visual Studio 11 Developer Preview for development
I recently downloaded the Visual Studio 11 Developer Preview, and it looks awesome. I read the fine print on the download page, and it says:
Visual Studio 11 Developer Preview is prerelease ...
2
votes
0answers
125 views
Macros for Build Commands and Properties in Visual Studio 11
Three-part question first:
Are the build-time macros fully fleshed out in Visual Studio 11?
How can I edit & define them in the IDE?
How can I let the macros still have their meaning during ...
1
vote
1answer
88 views
Why does a single line app with System.Console.WriteLine give me a syntax error?
I decided to have a go at building Windows Metro style apps with the Windows Developer Preview again, after multiple frustrating experiences.
So I fire up Visual Studio and BAM! Right as I try to ...
1
vote
2answers
170 views
Embedded database for windows 8 app
Is there any kind of embed-able database for windows 8 app development?
I was looking for something like Sqlite or etc which integrate with visual studio 11.
1
vote
2answers
424 views
Where are templates for Metro Style Apps?
I downloaded and installed WindowsDeveloperPreview-64bit-English-Developer.iso on VMWare. But when I start Visual Studio Express 11 which comes with Windows 8 I cannot see any Windows Metro Style ...
1
vote
1answer
209 views
C2977: 'std::tuple' : too many template arguments (MSVC11)
I'm trying to build googletest with Visual C++ 11, but following code causes an error
template <typename T1, typename T2, typename T3, typename T4, typename T5,
typename T6, typename T7, ...
1
vote
2answers
147 views
Visual Studio Extensions and Visual Studio 11 Dev. Preview
I am unable to install lots of extensions to Visual Studio 11 Dev. Preview. It keeps saying This extension is not installable on any currently installed products..
I have only VS 11 Dev. Preview ...
1
vote
1answer
99 views
Compact framework support in Visual Studio 11 [closed]
Does anyone know whether Visual Studio 11 will support the development of compact framework applications (windows mobile)?
1
vote
1answer
312 views
How can I clean up a failed installation of Visual Studio 11?
I tried to install Visual Studio 11 Developer Preview on D:\Programs\VS11, and the installation failed due to low disk space on C: drive (which I solved after the error). When I try to uninstall VS11 ...
1
vote
3answers
127 views
How to use MSTEST with Visual Studio 11 Dev Preview?
Exactly as the question says :
How can I MSTEST with Visual Studio 11 Dev Preview ?
I tried to find the mstest.exe but it doesnt exist in its usual location :
C:\Program Files (x86)\Microsoft ...
1
vote
1answer
103 views
VS11- How to open the sample application downloaded from Extention Manager
In Visual studio 11 Developer Preview, you can download samples from the extension manager, but is there an easy way to open those samples.
I know the files are downloaded to
...
0
votes
0answers
66 views
Internal F# error with F# 3.0 in Visual Studio 11 Developer Preview?
I have installed the Developer Preview of the Visual Studio 11 along with F# 3.0. If I open a F# project it is opened with no warnings or errors and FSI starts normally, but as long as I start testing ...
0
votes
1answer
57 views
Can not find Console in Visual Studio 11 developer preview [closed]
Possible Duplicate:
Why does a single line app with System.Console.WriteLine give me a syntax error?
The environment I am having: Win 8 developer preview + Visual Studio 11 express running ...
0
votes
1answer
44 views
Adding a Web Reference in Visual Studio 11
I have a wsdl file I am trying to add into a Metro application created in the developer preview for Visual Studio 11. This is from a third party API. The sample application provided runs correctly ...
0
votes
2answers
38 views
fatal error C1083: Cannot open include file: 'xmemory': No such file or directory
I was having troubles with visual studio, and I ran a repair. Upon my first compile, this error shows up. Should I really just start from scratch or is there a fix? I can't find any solution to ...
0
votes
0answers
32 views
VS11 (VB.NET) Editor mysterious death [closed]
What is it? in the code that cause the Editor to die?
Try putting in a newline after "Exts" and it dies.
Module Module1
Sub Main()
End Sub
End Module
Public Module Exts
Private Iterator ...
0
votes
0answers
119 views
Getting strange error when trying to install Visual Studio 11 Developer Preview on Windows 7 Home Premium x64
I'm trying to install Visual Studio 11 Develoepr Preview onto Windows 7 Home Premium x64 and I'm getting this error:
Setup Failed! Install cannot continue because some required components failed.
...
0
votes
1answer
258 views
Microsoft.Data.Entity.Design, Version=10.0.0.0 is for Visual Studio Developer Preview 11
I am trying something here but keep failing.
I have Visual Studio Developer Preview installed on a Windows Server 2008 R2. As you know, for now VS extensions are not compatible with VS 11 Dev ...
0
votes
0answers
64 views
Disable CSS auto-format in Visual Studio (particularly 11)
I need to disable the CSS auto format in Visual Studio 11. It simply drives me nuts, it's horrible. I remember in version 2010 there was an option to disable auto formatting for any language, but now ...
0
votes
3answers
258 views
Async/await not reacting as expected
Using the code below I expect the string "Finished" to appear before "Ready" on the console. Could anybody explain to me, why await will not wait for finishing the task in this sample?
static ...
0
votes
0answers
45 views
Install Windows Service
I've seen numerous questions along these lines, but they're either unanswered or the answers don't work/apply to my situation.
I made a basic Windows Service project in C# (using VS 11 Dev Preview, ...
0
votes
1answer
195 views
Problems compiling Windows 8 Metro Application
I am trying to create a Windows 8 Metro Application using Grid View with Visual Studio 11 Preview, but when the project template for the Grid View is finished loading, I get inexplicable errors.
I ...
0
votes
0answers
212 views
WPF Ribbon in Visual Studio 11 Developer Preview?
I am keen to create a new program that uses WPF Ribbon with C#. I am using Windows 8 and the Visual Studio 11 Developer Preview (Professional edition), however when I tried to install the toolkit from ...
0
votes
1answer
149 views
Is F# in visual studio 11 Developer Preview?
Whether there is in Visual Studio 11 F#.
Visual Studio 11 Developer Preview is an integrated development environment that seamlessly spans the entire life cycle of software creation, including ...
0
votes
0answers
134 views
Error Installing Visual Studio 2011 Dev Preview
I'm getting following error both on web install or directly using the ISO image downloaded. how to resolve this?