Web Extension in Visual Studio 2012

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 found several, but I do not know what options I install to create a full-featured .NET Application Web project.

Could you tell me what basic extensions to run a web program I install on my machine so that it does not have a problem of lack of extensions during the development?

    
asked by anonymous 29.06.2018 / 23:40

1 answer

2

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

If you choose:

  • ASP.Net and Web Development
  • Azure Development
  • Data Processing and Storage
  • Multiplatform development with .NET Core

RegardingJavaScript/HTMLframeworks,youcanuseCDN:

Basically no <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><scriptsrc="https://unpkg.com/axios/dist/axios.min.js"></script>
    
30.06.2018 / 00:02