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.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Just before I got a problem with excel and I recovered MS Office with online option. After that my excel works well, but my project in Visual Basic VB.NET lost excel reference(Microsoft.Office.Interop). I recovered already Visual Studio, but it still loses reference. I use Office Home & Student 2019 and Visual Studio 2019. Please, help me to fix it.
Have you tried simply adding the Microsoft.Office.Interop.Excel extension library?
Further to your comments, if that reference isn't available/visible, check this SO question: Microsoft.Office.Interop.Excel Reference Cannot be found.
Personally, out of the answers there, I'd try the NuGet option first:
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.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
A few years ago we had a small program created for generating reports (written in C#, probably Visual Studio 2008) - it is a Windows Forms exe with a couple of dll files.
I need to make a change to the hard-coded value of VAT but we cannot find the source code for this file anywhere. Is there a way to re-load this exe + dlls into a Visual Studio project?
I have some experience with .Net Reflector, but would that be the answer to building a new solution?
Thanks for any help.
Try to google .Net decompiler, it should give you what you are searching for.
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 needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hello, I want to write a plugin in VS 2010.
Where can I select the file from solution explorer, get file properties and display a dialog or form that I have created in my plugin project?
I recommend you start with Microsoft's Getting Started with Extending Visual Studio page. Also, Channel 9 has an introductory video on VS extensibility.