Here's a couple cool SSIS Expressions for creating Package Version strings: Format: 1.0.0 (DT_STR,4,1252) @[System::VersionMajor] + "." + (DT_STR,4,1252) @[System::VersionMinor] + "." + (DT_STR,4,1252) @[System::VersionBuild] Format: 1.0.0.20100106 (DT_STR,4,1252)
Read More...