Skip to content

Commit

Permalink
Skip Zip step on Mono. Fixes #298
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Bakken committed Dec 23, 2015
1 parent cb291cf commit e8ae54f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RiakClient/RiakClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,12 @@
<CallTarget Targets="CleanCommonAssemblyInfo" />
</Target>
<Target Name="AfterBuild" Condition="'$(Configuration)' == 'Release'">
<ItemGroup>
<ItemGroup Condition="$(OS) == 'Windows_NT'">
<ZipFiles Include="$(OutputPath)*.dll" />
<ZipFiles Include="$(OutputPath)*.xml" />
<ZipFiles Include="$(OutputPath)*.pdb" />
</ItemGroup>
<Zip Files="@(ZipFiles)" WorkingDirectory="$(OutputPath)" ZipFileName="$(OutputPath)$(AssemblyName)-$(VersionString).zip" ZipLevel="9" />
<Zip Condition="$(OS) == 'Windows_NT'" Files="@(ZipFiles)" WorkingDirectory="$(OutputPath)" ZipFileName="$(OutputPath)$(AssemblyName)-$(VersionString).zip" ZipLevel="9" />
</Target>
<Import Project="..\..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets" Condition="'$(OS)' == 'Windows_NT' And Exists('..\..\packages\StyleCop.MSBuild.4.7.49.1\build\StyleCop.MSBuild.Targets')" />
</Project>

0 comments on commit e8ae54f

Please sign in to comment.