Web Extension in Visual Studio 2012

Asked

Viewed 52 times

1

I installed Visual Studio 2012 Express on my machine and did not add the extensions needed to work on the Web.

In Visual Studio there is the option to add extensions and updates. There I located several, but I do not know what options install to create a Web Application project . NET with all the resources.

Could you tell me what basic extensions to run a web program I install on my machine so that there is no problem of missing extensions in the course of development?

  • Dude, if you installed the desktop version there’s no way, right? Visual Studio for Desktop/Windows: development of applications for the computer. Visual Studio for Web: VS version for web application development.

  • 1

    runs the installer again and adds/removes resources. Since you are installing now... look for the most updated one. Community 2017 https://visualstudio.microsoft.com/pt-br/

  • I also recommend Visual Studio 2017. It fixed several things from these previous versions. https://visualstudio.microsoft.com/pt-br/vs/

  • Got it. Thank you very much friend! Aprçs!

1 answer

2

You can use Visual Studio 2017. It fixed several things from these previous versions.

In case you choose:

  • ASP.Net and Web development
  • Development for Azure
  • Data processing and storage
  • Cross-platform development with . NET Core

Instalador Instalador 2

For Javascript/HTML frameworks, you can use CDN:

Basically in the <head>

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">

<!-- development version, includes helpful console warnings -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  • It was very clear. Thank you very much friend! Aprçs!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.