Skip to content

Instantly share code, notes, and snippets.

@chamons
Created February 11, 2016 16:53
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 chamons/8f0e996d5c6f13687d1f to your computer and use it in GitHub Desktop.
Save chamons/8f0e996d5c6f13687d1f to your computer and use it in GitHub Desktop.
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<BuildDependsOn>$(BuildDependsOn);RenameBundle</BuildDependsOn>
</PropertyGroup>
<Target Name="RenameBundle" Condition="$(CreatePackage)" DependsOnTargets="_CreateInstaller">
<Copy SourceFiles="$(TargetDir)/TestMacAppPkg-1.0.pkg" DestinationFiles="$(TargetDir)/TestMacAppPkg.pkg" />
<Delete Files="$(TargetDir)/TestMacAppPkg-1.0.pkg"/>
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment