Questions tagged as 'visual-studio'

2
answers

How to manage approval and production environments with Team Services?

I'm in an ASP.Net C # project that is starting now, but I come from ASP Classic , where things are quite different. In this new project, we need to create and manage homologation and production environments, where changes must go to the homo...
asked by 23.06.2016 / 22:22
3
answers

Increment version automatically, and get version number via code

In the software I'm working on, there are users whose doubts should be answered by looking at the software version number. Something of type 10.0.1.1000 configured in the project properties. I would like to know how to increment the versio...
asked by 29.01.2014 / 19:39
1
answer

Generate classes with XSD or import WSDL [ANS / TISS]

ANS provides the .XSD , and .WSDL files for TISS implementation. S and I generate the code by .XSD, I have the classes structured correctly. Example: namespace TissV3 { class Cabecalho { ... } class...
asked by 11.06.2018 / 16:29
1
answer

Debug and Release mode in Visual Studio, what's the use?

In my Visual Studio I noticed that there are two settings that I can not understand what they are for, they are Debug and Release is part of the Solution Confugurations option. Could someone explain to me what is the purpose of these two...
asked by 02.11.2015 / 14:48
1
answer

XML documentation

I develop a framework in PHP and would not like to comment on the code of the framework directly in the classes, for several reasons. So I would like to know if there is an editor that reads the documentation from an XML or something similar,...
asked by 13.08.2014 / 02:44
2
answers

What is "stdafx.h" and what is its importance?

When creating a C ++ project in Visual Studio, it automatically brings a line in the main file: #include "stdafx.h" As I started the language study, seeing some " hello world ", I did not find this line in the examples. When removing thi...
asked by 20.05.2017 / 03:20
3
answers

Parameter passing C #

I have the following code in js function consultaSolicitacao() { id = getVar("id"); serviceURL = "/Solicitacao/ConsultaSolicitacao"; $.get(serviceURL, null, function (data) { var aux = data.length; var tblText = ''; for...
asked by 13.05.2015 / 21:03
2
answers

What are the differences between the available versions of Visual Studio 2015?

Last year was announced 3 versions of Visual Studio 2015 : Community, Professional and Enterprise Based on the tools available in each version: What do I lose between using one and another in part productivity and tools available? (op...
asked by 06.04.2016 / 23:12
1
answer

Find slow point in .Net code

I need to parse a code that is taking too long to execute, the method code is extensive and makes several calls to other methods, I've been debugging to try to identify the slow point, but this is very difficult . Does Visual Studio have any...
asked by 14.01.2016 / 12:14
3
answers

Run program within Try / Catch

Working with Visual Studio, when an error occurs while the program is running the program crashes and you can not see where the program crashed and only that error screen appeared. To get where these errors occur we use try catch , so w...
asked by 06.03.2014 / 13:24