-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathinstall-dotnet.html
97 lines (91 loc) · 4.05 KB
/
install-dotnet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Foo site</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css" />
<!--
__ __ _ _ _ _____ _____
\ \ / /__ _ _ __ _ ___| |_ ___ | \ | | ____|_ _|
\ V / _ \| | | | / _` |/ _ \ __/ __| | \| | _| | |
| | (_) | |_| | | (_| | __/ |_\__ \ _| |\ | |___ | |
|_|\___/ \__,_| \__, |\___|\__|___/ (_)_| \_|_____| |_|
|___/
-->
</head>
<body>
<div class="nav-menu nav-menu-collapsed" id="navigationMenu">
<div class="nav-menu-header">
<img src="http://i.microsoft.com/net/images/chrome/net-logo.jpg" />
</div>
<div class="nav-menu-content">
<ul>
<li><a href="install-dotnet.html">Install .NET</a></li>
<li><a href="target-dotnet-platforms.html">Target .NET Framework</a></li>
<li class="active"><a href="dotnet-user-groups.html">.NET User Group meetings</a></li>
<li><a href="help/dotnet-docs.html">.NET Docs</a></li>
</ul>
</div>
</div>
<div class="main-content">
<div class="row">
<div class="col-md-12">
<div class="sub-menu">
<a href="#" id="menuControl"><span class="fa fa-bars"></span></a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h1>Install the .NET Framework</h1>
<p class="lead">You need to install the .NET Framework to run many apps on Windows. The best versions to install is the <a href="http://go.microsoft.com/fwlink/?LinkId=528259">.NET Framework 4.6</a>. Some apps may required <a href="http://go.microsoft.com/fwlink/?LinkId=330819">.NET Framework 3.5 SP1</a>. Those two versions should run nearly all .NET apps.</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Available .NET Versions</h2>
<!--<ul id="versions" class="list-group"></ul>-->
<div id="versionsList"></div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p class="lead">Developers may want to check out <a href="target-dotnet-platforms.html">Targeting Dotnet Platforms</a> and <a href="targeting-dotnet-versions.html">Targeting .NET Framework Versions</a> to learn more about targeting .NET Framework versions.</p>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/main.js"></script>
<script>
document.title = "Install .NET Framework Versions";
$(document).ready(function() {
var data;
var json = "platforms.json";
$.support.cors = true;
$.getJSON( json, function( d ) {
data = d;
$.each(data.platforms, function(key, val)
{
if (val.category == "netfx")
{
//$("#versions").append("<li class=list-group-item><a href=" + val.runtime[0].link + ">" + val.platform + "</a></li>");
$("#versionsList").append("<a href='"+ val.runtime[0].link +"' class='install-tile'>"+ val.platform +"</a>");
}
});
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65565245-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>