BuildContributorContext::Arguments Property
Updated: April 20, 2017
Gets a dictionary of command-line arguments and their values. When building in SSDT, arguments are available when found in a .sqlproj file or a referenced .targets file. For instance to add a "RunMyContributor" argument with a value of "true", the following would be added: <PropertyGroup> <ContributorArguments Condition="'$(Configuration)' == 'Debug''"> $(ContributorArguments);RunMyContributor=True; </ContributorArguments> </PropertyGroup> In this case the argument is only added for Debug configuration. Using the above configuration it is possible to collect information from the MSBuild environment and pass it to the contributor.
Assembly: Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)
public: property IDictionary<String^, String^>^ Arguments { IDictionary<String^, String^>^ get(); }
Property Value
Type: System.Collections.Generic::IDictionary<String^, String^>^Returns IDictionary<TKey, TValue>.