Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I am learning Azure function and not able to decide, should i use VS code Or VS2019 for the same.
This is what i found:
VS Code:
Lightweight,
AZ function and c# extension available
Better integration with git
Visual Studio:
Option to create azure function project directly from file > new project
Can use it to create other project types for example: web, console etc
You can create Azure Function in 3 ways
VSCode
Visual Studio
Azure portal
It depends on your scenario and integrations you need, both VS and VSCode has the features
needed, if you use VS it becomes more easier to create, manage and deploy since you dont have to install plugins separately, Go with VS by default. If you dont have VS you can achieve all these with VSCode by making plugins available.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I've Learned C# Using Visual Studio For Long Enough. It's So Fun and Easy To Code and Learn Programming Using Visual Studio IDE. But Sometimes, I Ever Think To Make A Real Program That Useful Like Usually Software. Could I Make Good Software Just Using Visual Studio ? and If Yes, What's The Shortage of A Software That Develop Using Visual Studio ?
Thanks,
of course you can create a "real" program using Visual Studio. Visual Studio is one of the biggest IDE (Integrated Development Environment) out there.
For example Microsoft is using Visual Studio to create all of their Applications.
Office, Exchange, Windows and the list goes on.
If you want to create useful software with Visual Studio and C# think small in the beginning. Try to create applications that help YOU with whatever you do at your pc, because if you are able to create software that is useful to you, then it might be useful for others too, right?
Everybody starts out small and works his/her way up.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know how to create a project templates in visual studio.
My question is about that;
How to create a Project Template like Asp.net MVC?
When you create a project with Asp.net MVC, you'll have Razor syntax stuff like intellisense, There is a directly access to add Views and Controllers and a lot of thing to help the other programmers.
On MSDN check out the documentation on:
Custom Project and Item Templates.
The IWizard interface
Custom editors
General Visual Studio.NET Extensibility
And last but not least, since you're already quoting the ASP.NET MVC project as your example, it's open source and you can see how it's done right on codeplex.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
When i open vs2010 then click on create new website , I am not able to see any templates like empty asp .net website, it shows no templates, How can I get back all templates , help me , thanks in advance ?
Taken completely from Mitch Wheat's answer on Visual Studio 2010 missing ASP.NET projects templates?
Default Project Templates in Visual Studio
Available templates may vary according to Visual Studio version, SKU,
installation options, and other customizations. If you are missing a
template that comes with your installation, run devenv.exe with the
/installvstemplates switch. For more information, see How to:
Restore Default Project Templates.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
I want to ask you if it is possible to build and run coded ui tests without Visual Studio 2010 Premium installed?
Or can I just install Visual Studio 2010 Premium and use it command line without licensing? I know it works, but is the license ok with that?
Nope, you would need to license it. If you want to run the tests on a 'test' machine or 'build' machine without using VS to run them, then I would look at the Test Agent, Controller, and remote execution in the Test Sku's available from MS.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I currently work with both Visual Studio, Eclipse/Rad, and Vim heavily. Visual Studio and Eclipse don't present any problems because they're the same paradigm. However vim (which I use for my *nix work) muddles the issue because it's modal. I actually like the modal nature of vim and find myself trying to type esc k k in Visual Studio. Does anyone have a suggestion about how to make working in the different environments easier?
You could always get ViEmu for Visual Studio and viPlugin for Eclipse / RAD...
Try use this script:
www.vim.org/scripts/script.php?script_id=864
The visual studio script in vim allow you use external command line to work with visual studio.
The plugin is write in vim-script and python, which means you need to install python so that you can run the script.
The script doesn't need you to have a python-embed version of vim (it can auto detect that), but it is highly recommend you to use a python-embed version for performance.
Before I using this plugin I have same problem with you, at that time I use external tool in Visual Studio which you can find here:
vim.wikia.com/wiki/Calling_gvim_from_MS_Visual_Studio
Also I recommend you to check exVim project, which already integrate the Visual Studio plugin in it, and provide an python-embed version