Merge pull request #8 from specklesystems/osx

feat(build): adds post build event to correctly rename artifact in osx
This commit is contained in:
Matteo Cominetti
2020-11-13 14:34:26 +00:00
committed by GitHub
@@ -77,8 +77,11 @@
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOsPlatform('Windows'))">
<PostBuildEvent>Copy "$(TargetPath)" "$(TargetDir)$(ProjectName).gha"</PostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOsPlatform('OSX'))">
<PostBuildEvent>cp "$(TargetPath)" "$(TargetDir)$(ProjectName).gha"</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<FallbackCulture>en-US</FallbackCulture>