Skip to content

Instantly share code, notes, and snippets.

Created August 15, 2012 02:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Publish.msbuild
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Transform"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Publish">
<Message Text="Configuration: $(Configuration)" />
<!-- Platform=Any Cpu for Solution Files, Platform=AnyCpu for project files-->
<MSBuild Projects="$(Projects)" Properties="Platform=AnyCPU;
Configuration=$(Configuration);
AutoParameterizationWebConfigConnectionStrings=False;
DeployOnBuild=True;
DeployTarget=Package;
PackageLocation=_package;
PackageAsSingleFile=False;" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment