Skip to content

Instantly share code, notes, and snippets.

Created August 15, 2012 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3355229 to your computer and use it in GitHub Desktop.
Save anonymous/3355229 to your computer and use it in GitHub Desktop.
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