How to find the .NET framework version of a Visual Studio project?

后端 未结 9 1598
生来不讨喜
生来不讨喜 2020-12-04 08:50

I have a project in Visual Studio. How can I find out which .NET Framework version it\'s for?

相关标签:
9条回答
  • 2020-12-04 09:11

    It's as easy as in your Visual studio.

    1. go to the 4th menu option on top, 'website'.
    2. under websites go to option, 'start options'.
    3. under start options, go to 'build' option.
    4. change the target framework there to what so ever framework.
    0 讨论(0)
  • 2020-12-04 09:15

    Simple Right Click and go to Properties Option of any project on your Existing application and see the Application option on Left menu and then click on Application option see target Framework to see current Framework version .

    0 讨论(0)
  • 2020-12-04 09:17
    • VB

    Project Properties -> Compiler Tab -> Advanced Compile Options button

    • C#

    Project Properties -> Application Tab

    0 讨论(0)
  • 2020-12-04 09:18
    1. In Solution Explorer, open the context menu for the project that you want to change, and then choose Properties.
    2. In the left column of the Properties window, choose the Application tab.
    3. In the Target Framework list, you will see the current version of .NET framework on the project. You may also change the framework from there.
    0 讨论(0)
  • 2020-12-04 09:24

    With Respect to .NET Framework 4.6 and Visual Studio 2017 you can take the below steps:

    1. On the option bar at the top of visual studio, select the 4th option "Project" and under that click on the last option which says [ProjectName]Properties.Click on it & you shall see a new tab has been opened.Under that select the Application option on the left and you will see the .NET Framework version by the name "Target Framework".
    2. Under Solution Explorer's tab select your project and press Alt + Enter.
    3. OR simply Right-click on your project and click on the last option which says Properties.
    0 讨论(0)
  • 2020-12-04 09:25

    You can't change the targeted version of either Windows or the .NET Framework if you create your project in Visual Studio 2013. That option is not available anymore.

    Look that link from Microsoft: http://msdn.microsoft.com/en-us/library/bb398202.aspx

    0 讨论(0)
提交回复
热议问题