Missing web template under visual C# in newly installed Visual Studio 2017 - visual-studio-2017

I'm specifically looking for asp.net MVC 4/5 template under Visual C#. Already installed .NET framework component but still not seeing the web template as I see before in my VS 2013. Please help.

In Visual Studio Installer - Workloads tab, under Web & Cloud, select ASP.NET and web development. You can now add the usual ASP.NET Web Application (.NET Framework).
image

Related

jaggery project in WSO Developer Studio 6.6.0 or Integration Studio 7.2.0

Is it possible to create "Jaggery Project" in WSO2 developer studio 6.6.0 or Integration Studio 7.*?
I found a few documents describing jaggery project in developer studio 3.x version.
But it seems not possible to download corresponding version from WSO2.
They open available links only for developer studio version 6.* or integration studio versions.
(I guess Integration studio is the new name of developer studio.)
Other versions including 3.x does not available. Maybe, they decided not to provide old versions.
In new versions of developer studio, I could not found a way to create "Jaggery Project".
"https://jaggeryjs.org/editor.jag" has this link(https://docs.wso2.org/display/DVS360/Creating+Jaggery+Artifacts) but it also must be a dead link.

How to publish a website in Visual Studio 2017

I am migrating from Visual Studio 2008 to VS 2017.
In 2008 I had a menu item: Build -> Publish Website.
I configured that to put the website on a share on the webserver so I pretty much could use that menu item to deploy to the test server so the users could test.
I cannot find that menu option on 2017.
The functionality seems to be moved to the Publish Web Site Tool described here:
https://msdn.microsoft.com/en-us/library/377y0s6t.aspx#thepublishwebsiteutility
I can not find how to install this. I can not find it in the Visual Studio Installer utility.
I can find instructions for publishing, but those instructions include creating the project from scratch. I need to do this on an existing project.
Visual Studio 2017 has these features from the Build menu...
Or, right-click your project...
A wizard will start asking how you want to publish your project. There is ample documentation for this on the web.

Testing ASP.NET Core app using Protractor in Visual Studio 2017

I've got a asp.net core application which uses angular4 as client frontend and asp.net core for the service api. I've had end-to-end unit-testing up and running while using Visual Studio 2015.
Since I switched to Visual Studio 2017 I can't get the tests to use protractor anymore.
First problem: For protractor I need the full .net framework, for hosting my app I want to use .NetCoreApp 1.1. And Visual Studio 2017 does only support using one Framework. There are tricks by editing the proj-file, but even then I could not even compile my test project to use protractor.
So: Has anyone been able to run unit Tests using protractor in Visual Studio 2017? Any pointers about it, maybe you can point me to a website containing a sample?

Silverlight business application: windows authentication using IIS express not working

When using IIS Express and Windows Authentiction with Silverlight 5 (using silverlight business application template in VS 2012), the status bar is stuck at "authenticating..."
Switching back to the Visual Studio Developer Server, Windows Authentication works.
Please assist.
Solved the issue by applying below.
Need to update extra configurations (at IIS express level), in addition to Visual studio settings.
Go to MyDocuments\IISExpress\config\applicationhost
Search for windowsAuthentication
Updates:
3.1 Under sectionGroup name="authentication" and section name="windowsAuthentication", update overrideModeDefault to "Allow". Default is "Deny"
3.2 Under authentication >> windowsAuthentication, update enabled="true". Default is false.
Save and close
All projects, using Windows authentication and running under IIS express, will start running smoothly.

How can I create a .NET 4.0 web service project in Visual Studio 2010 Pro?

The Web Services template isn't in the .NET 4.0 projects list--only .NET 3.5, but my service needs to depend on a .NET 4.0 assembly with my model/database functions. That assembly depends on 4.0, because of the data provider required (dotConnect for MySQL)
The web service will need a reference to this business logic assembly so it can pass its arguments to said assembly and blindly return. But, can I run the web services project in a .NET 4.0 application pool without any problems with the data provider?
I have Visual Studio 2010 Professional, not Ultimate (which I've read has the template)--is there any way around this?
In 4.0 you have the WCF framework. Try this one.
See this related article: Asp.Net Web Service Application missing in Visual Studio 2010