ASP.NET 웹 구성 지침
구성 데이터는 Web.config라는 XML 파일에 저장
targetFramework . 이 특성은 웹 사이트의 대상이 되는 .NET Framework 버전을 지정합니다. 이 특성은 .NET Framework 4 이상 버전을 대상으로 하는 웹 사이트의 경우에만 포함해야 합니다.
Visual Studio에서 이 특성은 대상 프레임워크 버전에서 사용할 수 있는 기능만 프로젝트에 사용되도록 하는 데 사용됩니다. 자세한 내용은 밑에
예제
<compilation debug="true"
optimizeCompilations="true"
targetFramework="4.0" />
원본 위치 <https://msdn.microsoft.com/ko-kr/library/ff400235(v=vs.100).aspx>
Targeting .NET Platforms
You can build apps for many platforms and services by downloading .NET Framework targeting packs and SDKs and using them with Visual Studio.
Check out the .NET Framework blog for information on new releases. Information on the Lifecycle Policy for various .NET Framework versions can be found on the Support Lifecycle Policy FAQ.
The downloads available differ by Visual Studio version. Pick your Visual Studio version by using the buttons below.
Visual Studio 2010Visual Studio 2012Visual Studio 2013Visual Studio 2015
.NET Framework
Platform | Supported | Downloads |
.NET Framework 4.0.3 Targeting Pack | ||
Included in Visual Studio 2010 | ||
Supported |
원본 위치 <http://getdotnet.azurewebsites.net/target-dotnet-platforms.html>
VS 2012 부터 .net 4.5 지원
'기술(MS,Web,Windows,AWS) > Web개발' 카테고리의 다른 글
무료 HTML5, CSS3 and JavaScript 강좌 원철연 교수 (0) | 2016.07.19 |
---|---|
특정 문자열을 사용하는 SP/뷰/트리거/함수 찾기 쿼리 sql검색 (0) | 2016.06.20 |
자바스크립트 최적화 로딩속도 등 (0) | 2016.05.26 |
IE10 부터 맞춤법 교정 기능 (0) | 2016.04.22 |
FCK 에디터 기본 설정 (0) | 2016.04.05 |