Visual Studio 2012 is the latest version in Microsoft's Visual Studio product line
0
votes
0answers
12 views
Prism store app example Xaml errors
I'm building a win 8 store app using microsoft prism. I'm following the guide here.
When I'm looking at the store app sample I get a lot of errors in the views.
Error 3 Application is not ...
0
votes
0answers
10 views
Create a vertical menu bar with sub menu windows phone 8
I want to create one application which contains vertical menu bar with sub menu in windows phone 8. Is there any example to create this type of menu?
0
votes
0answers
7 views
Windows Store App - installed update - integrity issue
I experience a very weird issue that drives me insane. It is hard to explain and to believe but I'll try to explain.
My developed app was installed at a local pc (not the developer pc) for testing. I ...
0
votes
0answers
2 views
Using Visual Studio with TWL/Nitro SDK
Is there any way I can use Nintendo TWL or Nitro SDK on Visual Studio, along with their IS-NITRO-DEBUGGER? I know there're some workaround, since I heard people using Visual Studio to work on DS/DSi ...
0
votes
0answers
6 views
Difference of standard publish and adding cloud services with vs2012
I wonder if someone can help? I'm trying to deploy a mvc app to azure and have followed the what appeared to be simple instructions of selecting publish from my mvc app and using the imported azure ...
0
votes
0answers
4 views
How to configure rules in JSLint extension for Visual Studio 2012
I tried to use JSLint.VS2012 extension to check the JavaScript code. it is useful for it found a lot syntax issues in my code. However, is it possible to configure the rules in JSLint to ...
1
vote
0answers
17 views
Setting output path on a per user basis
I want to set the output path for all binary files in a .NET solution in VS2012 to another location on a per user basis.
I found that I can modify the .csproj.user file manually so that it includes a ...
0
votes
1answer
14 views
How to build .exe of a solution
I recently finished a solution composed by 2 project. For this 2 project I have the .exe build, but I don't know how to do the exe of solution with VS 2012. Someone know how to do it?
1
vote
2answers
44 views
Extending Visual Studio 2012 Express
Ok, here's my issue - rather simple, though I'm not sure how to go about it (and avoid downloading tens of unnecessary gigabytes).
I've downloaded and installed "Visual Studio 2012 Express for ...
2
votes
2answers
29 views
Unable to load dll: Module cannot be found
I am using a managed DLL that referencing an unmanaged dll.
I added the unmanaged dll under /External/foo/ directory, and i changed the "Copy To Output Directory" to always.
The problem is that the ...
-1
votes
1answer
63 views
#pragma region in c#
In the following program I wrote in C#:
static void Main(string[] args)
{
paramsAndOptionalTest(1,2);
#pragma region CmdLineStuff
for (int i = 0; i < args.Length; ...
0
votes
0answers
7 views
StyleCop Produce Different Results From Command Line Than From Within Visual Studio 2012
I've add StyleCop version 4.7.44.0 to my C# project. I've change the Settings.StyleCop to check for naming and maintainability issues only.
I've run StyleCop by right clicking on my project and select ...
2
votes
0answers
41 views
Modify C# Code BEFORE Compile in VS 2012
i've got a similiar Problem like the question here: Create MSBuild custom task to modify C# code *before* compile
I need to change .cs files before compilation. Of course i don't want them to get ...
0
votes
0answers
7 views
PHP Webservice not working in Metro style App
I am newbie of Metro style app. I am using VS ultimate 2012. When i add service reference i am facing this kind of error in Error log
*Error 6 Custom tool error: Failed to generate code for the ...
0
votes
2answers
47 views
How to create a function in another file with objects and call it from main
I want to be able to make a battle scene and put it into a function, but every time i try i have to create objects in a different header file, which i then cant call in main. To try to fix this i made ...