Why Net Framwork did not shown up on visual Studio 2015 when creating new Integration Service Project?

minh tran 76 Reputation points
2022-04-26T23:43:10.99+00:00

Hello,
I am new to Visual Studio and I learn to use it to create a new Integration Service Project.
I would like to seek your help on finding out why new frame work does not shown up when I create a
new Integration Service Project eventhough I download the Net Framework 5.0 to my machine
?
I would like to seek your helps the experts to figure out what's going on , and why the new framework does not show up and what I need to do?

196618-capture.png

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,647 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Michael Taylor 48,826 Reputation points
    2022-04-27T00:19:34.497+00:00

    The frameworks you have installed aren't relevant for SSIS. SSIS must use the version of .NET that is installed as part of the SQL Server host process. That process is .NET 4 and therefore your SSIS package will target .NET 4 irrelevant of anything you want to do. The host process controls the runtime, not your SSIS package.

    The only thing within your control related to the framework is the version of the CLR 4 runtime that is installed. If you install .NET 4.8 on the SQL Server machine then the host process will be running 4.8 of the CLR because you cannot SxS install CLR versions.

    You cannot target .NET Core/5/6 with SSIS at this time. Perhaps in SQL 2022.vNext they will update the target framework support but for now it is not possible.

    0 comments No comments