Testdriven.net not available in the right-click context menu - testdriven.net

Testdriven.net not available in the right-click context menu??

Check which edition of Visual Studio you have - you cannot install add-ins to Visual Studio Express editions.
Check you have actually installed TestDriven.Net.
Check the TestDriven.Net add-in is enabled in Visual Studio by going to Tools -> Add-in Manager and making sure the checkbox next to it is ticked, and that the Startup checkbox is also ticked.

Related

All Project templates don't appear in visual studio 2022

I have installed visual studio community 2022 with two workloads (for web apps), these workloads have a size about 5GB, They were downloaded previously and using in visual studio 2019, so when I choose them in the installer, the required downloads required was 1.68GB.
The downloading and installation completed successfully, but when I launched the visual studio 2022 to create new projects, no project templates appeared. I see only blank solution.
I opened the installer to ensure that workloads selected or not, and they are selected.
Now, how can I find the templates?
Open Visual Studio Installer.
Locate the Visual Studio 2022 panel and click "Modify".
On the right, in the "Installation details" menu, under "ASP.NET and web development" and then "Optional", check "Additional project templats (previous versions)".
Click "Modify" and you'll be done!

How to install Biztalk 2020 Project Templates in Visual Studio 2019?

I did full install of BizTalk including developer tools (after installing Visual Studio 2019). I have also done a repair and reboot since then.
I see this .vsdir file on the disk: "c:\Program Files (x86)\Microsoft BizTalk Server\Developer Tools\BizTalkProjects\BTSProjects.vsdir", but not sure how to make it work with VS2019.
File contains this:
Schema Files|{7a51b143-7eea-450d-baef-827253c52e43}|#221|140
BTSFlatFileSchema.vsz|{7a51b143-7eea-450d-baef-827253c52e43}|#134|7|#135|0|229|0|#136
JSONSchemaWizard.vsz|{7a51b143-7eea-450d-baef-827253c52e43}|#144|8|#145|0|229|0|#146
##Documentation about Adding Wizards to the Add Item could be found here http://msdn.microsoft.com/en-us/library/2sc7ft4a.aspx
The link in the file refers to a Visual Studio 2014 web page.
Expected result, click "Create New Project" in BizTalk, type BizTalk and be able to pick the template.
I have tried these two commands that might have fixed in older releases, not sure if they are applicable with VS2019:
devenv /setup templates
devenv /InstallVSTemplates
Copied from Biztalk 2020 - Project not showing in Visual Studio 2019
From the installer:
".To use this feature, you must also install the following: BizTalk Project Extension, Enterprise Single Sign-On (SSO) Administration.For more information on this component, click Help. "
And the Install BizTalk Server 2020 documentation:
To complete Developer Tools component installation, install BizTalk Server extension in Visual Studio.
To achieve this you need to:
Start Visual Studio and load into an empty IDE
Click Extensions, Manage Extensions
Search the online tab for BizTalk Server:
Install the BizTalk Server extension
Close all instances of Visual Studio
Let VSIX installer complete
Start Visual Studio and select BizTalk from the project types

Unable to see biztalk project template in Visual Studio 2013 Ultimate

I have installed BizTalk 2013 R2 on Windows Server 2012 R2 and Visual Studio 2013 Ultimate is also installed on the same machine.
I cannot see BizTalk Project template while creating a new project in Visual Studio.
When I ran the BizTalk setup again, Developer Tools box was not selected. When I select the box it gives following message
Features you selected requires the following components to be installed:
WCF HTTP ACTIVATION 4.5, IIS ASP NET 4.5
When I check in the Server Manager, both of the above are already installed.
Kindly help me resolve this issue.
Have you registered ASP.NET 4.5 on the machine?
Try running this command:
aspnet_regiis -i
You can read more about the ASP.NET IIS Registration Tool (Aspnet_regiis.exe) here:
http://msdn.microsoft.com/en-us/library/k6h9cz8h%28v=vs.100%29.aspx
The easiest way to do this would be to run the Visual Studio Command Prompt.
Also make sure to run as an administrator.
To restore the default project templates
In the command prompt, navigate to the location of devenv.exe. This file is located in \Common7\IDE.
Type "devenv /installvstemplates" and press Enter.
NoteNote:
If you are using an Express Edition of Visual Studio, type "Express /installvstemplates" where is either VB, VJS, or VCS for Visual Basic, Visual J#, and Visual C#, respectively.
If this procedure does not restore the default templates, reinstall Visual Studio.
U can follow this link also:
https://social.msdn.microsoft.com/Forums/vstudio/en-US/f1cd2e14-1d7e-4b84-8bc2-871d67e2a942/devenvexe-installvstemplates-not-install-propertly

How to make asp.net app run with visual studio server instead of IIS?

I have downloaded this blog engine
https://github.com/lelandrichardson/MiniBlog
I cannot run it within Visual Studio because it wants IIS : how to change this ?
If your project doesn't load in Visual Studio (it is greyed out), you need to manually edit the project file (MiniBlog.csproj) in a text editor. You just need to look for the UseIIS tag, and change its value to False:
<UseIIS>False</UseIIS>
When you do the above, Visual Studio should be able to load the project. It should now default to the Visual Studio web server.
Once you are able to load the project in Visual Studio, you can choose another web server, if you wish. You just need to right-click on the project in the tree view and then select Properties. From there, if you open the Web tab, you can choose the legacy Visual Studio Web Development Server, IIS Express (you may need to install this), or the Server version of IIS.
Just a note - I was unable to actually build the project that you linked to. There appear to be missing dlls, but that is out of the scope of this question.
try to add IIS Express 7.5 for visual studio http://www.microsoft.com/en-us/download/details.aspx?id=1038

Why does Visual Studio Premium 2010 not show all of the available project templates?

I'm trying to create an ASP.NET Web Application, but this is all I see:
http://img832.imageshack.us/img832/8444/newproject1l.png
http://img837.imageshack.us/img837/3119/newproject2.png
I have confirmed that I have the full Visual Studio installed, not just Visual C#.
Why can't I see ASP.NET Web Application in the "new project" list?
Based on the interface it looks like the "Web Tools" section was unchecked while installing Visual Studio. Try re-running the install, explicitly selecting Web Tools (can't remember the exact name) and seeing if that fixes the problem.

Resources