Yes. Edit the Settings File Name: settings in SettingsFileGenerator.xml
And change
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">Settings File Name:</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_LocalSettings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">DevSettings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_TestSettings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Exported_ProdSettings.xml</Data></Cell>
</Row>
To
<Row ss:AutoFitHeight="0">
<Cell ss:StyleID="s62"><Data ss:Type="String">Settings File Name:</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Local_settings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Dev_settings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Test_settings.xml</Data></Cell>
<Cell ss:StyleID="s40"><Data ss:Type="String">Prod_settings.xml</Data></Cell>
</Row>
Also as per the TechNet thread Not ble to deploy application through BTDF framework in Visual Studio 2013 make sure that the SkipExportSettings
is set to False
in the Properties in the MSBuild section
<MSBuild
Projects="$(MSBuildProjectFullPath)"
Properties="LoadedPropsFromEnvSettings=True;SkipExportSettings=True;$(PropsFromEnvSettingsDelimited)"
Targets="$(TargetsAfterLoadPropsFromEnvSettings)"
UseResultsCache="false" UnloadProjectsOnCompletion="true" />