I am trying to change the target framework for my SSIS 2019 script task to .NET 5.0 from .NET 4.7 by installing other frameworks. My changes are reverted back to .NET 4.7 once I save and close out from the script task. Could you please guide me on how to make my changes stick or the ideal way to switch the target framework to .NET 5.0
change target framework to net 5 in ssis 2019 script task
2.2k Views Asked by ITHelpGuy At
1
There are 1 best solutions below
Related Questions in .NET
- file download method in visual studio 2017
- Repository manager receives the wrong connection string in .net core
- MongoDb not connecting C#
- The current .NET SDK does not support targeting .NET Core 6.0. Brand new WPF Project VS Community 2022 17.9.5
- Why Scanning GSI on DynamoDb doesnt work as fast as expected when using CONTAINS?
- Are "blittable types" really unmanaged types for StructLayout Sequential
- Failed to fetch dynamically imported module on Blazor JS Interop
- Problem to upload several images per one request
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- Stripe connect payout - throws exceptions
- 'IOException: The cloud file provider is not running', when trying to delete 'cloud' folder
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Convert C# DateTime.Ticks to Bigquery DateTime Format
- Socket.io nodejs server .NET connection
- Producer Batching Service Bus Vs Kafka
Related Questions in SSIS
- Skip null rows in SSIS of excel file
- SSIS error: delimiter for column "X" is not found - started happening after migrating package to newer SSIS
- Copy or Move Data from one Database to other Database and have one more destination option
- Odata source inside ForEach loop
- Extracting data from SAP ERP into SQL Server
- Get the URL from C# script used in ssis
- Write rows on destination even when an error occurs?
- Visual Studio 2022 Task script editor : Impossible to modify
- SSIS package writes empty CSV file
- SSIS flat file destination generating more digits than in the database
- SSIS remove $ format from csv
- Handling inconsistent record delimeters in ssis
- SSIS Data Conversion Error: Overflow Issue in Automated Job Execution
- SSIS to Snowflake connection
- SSIS - OData Connection to Sharepoint List Failed Validation Error 0xC020801F
Related Questions in VISUAL-STUDIO-2019
- "Visual Studio stopped responding for 12 seconds,uninstalling extension might help" getting this message on installing VSIX and on opening the project
- VS2019 won't build .asm file even with masm.props build customization enabled?
- how to automatically generate a Module from a project in Visual Studio
- Visual Studio Conversion Properties: "set to a value for the first time, but it was already consumed" problem
- How to remove shortcut/alias to a .cpp and .h file from another project in Visual Studio 2019?
- Add connected service only adding reference.cs VS 2019 ASP.net
- Stop Moq NuGet package searching for source
- Visual Studio 2019 Python re-installation
- Viewport namespace missing from SharpDX directive, please assist
- Unable to cross-compile a simple program using MSVC 9
- SSIS Duplicate Enumerators in ForEach Loop
- HTTP Error 401.0 - Unauthorized You do not have permission to view this directory or page when running ASP.NET MVC 5 app from VS 2019 & IIS Express
- run/load VS2022 solution / projects with VS2019 gives error about MSBuild versions
- Receiving error when I try to run my ASP.NET MVC web application after I updated to Bootstrap 5.3.3
- Intellisense lists many unnecessary <Extention> methods for objects of type String?
Related Questions in SCRIPT-TASK
- How to access tables from two databases in one ADF Script?
- Issue with HttpClient.SendAsync("...") in SSIS Script Task
- SSIS Script Task "Object reference not set to an instance of an object" When Executed from SQL Server Agent Job
- XML Edit in SSIS using Script task
- Must declare the scalar variable "@ID" error, C#, SSIS, in Script task
- SSIS Script Task not Executing
- Enable to get bucket location, using default endpoint
- Write a SSIS script task to get oauth2.0 bearer token from a Web API
- SSIS Data Flow Task indicates it wrote x rows, and reported no errors, but none of the rows appear in destination
- Incorrect authentication data C# SSIS
- Why SSIS Script is losing NuGet package and references after I close and reopen the script?
- SSIS - How to write line by line into flat file using ForEach Loop Container
- Script task component is not working without Visual studio
- Visual Studio Will Not Edit Script Task
- SSIS Script Component Does Not Recognize Dts.Variables Namespace
Related Questions in SSIS-2019
- SSIS error: delimiter for column "X" is not found - started happening after migrating package to newer SSIS
- Find the reference_id belonging to a package
- SSIS VS 2019 - Unable to cast COM object of type 'System.__ComObject'
- How to get password from outside of package when using SSIS project parameter
- SSIS Job parameter value radio button "Use default value from package" not selected
- Pass variable to execute sql task for create table in ssis pakage
- Merge Join Behaving differently when executed on Server and Local Machine. Outputs completely different
- SSIS Custom Connection Manager
- Dynamically store values from a sql query into SSIS variables
- SSIS DailyETL Package Fails with FK Constraint Error
- SSIS package from catalog intermittent failures to connect to oracle database
- MySQL ODBC performance issue in SSIS package after upgrade to 2019 version
- Cancel the execution of SSIS Package from a C# application
- Column expression translation
- SSIS - IF AND STATEMENT
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

This is by design!
Since SSIS 2017, you are not able to change the script task/component's target framework since it is forced by the SSIS
TargetServerVersionproperty. As mentioned in the following post, this is by design: Script Task Target Framework - Cannot Change or Save.Later, In the SSIS extension version 3.2 preview, they mentioned that:
This means that using SQL Server 2019 as
TargetServerVersionwill force .NET framework 4.7 as target framework for all script tasks/components.You can check more information about SQL Server and required .NET framework versions in the following article: