Reputation: 11
I am using Visual Studio to create a very simple ETL package that reads some Excel file and uploads it into a database. We have a variable configured which contains the location of the source-file. Have have two environments: dev(evelopment) and prod(uction).
In location variable can either hold:
Ideally I would like to have this variable set by the deployment value (development / test).
I have looked into the deployment configuration, but I cannot find where I can set these variable values for different deployments.
Can anyone point me into the right direction?
Thanks!
Upvotes: 1
Views: 444
Reputation: 4810
Use a Project Parameter to hold the location of the source file instead. An overview this process is below.
Upvotes: 2