Skip to content

Commit

Permalink
Added build step to copy binaries in prep for releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
RealityStop committed Mar 23, 2018
1 parent 56ae749 commit 6e8bc9f
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -261,4 +261,5 @@ paket-files/


Dependencies/BoltBinaries/*.dll
Dependencies/UnityBinaries/*.dll
Dependencies/UnityBinaries/*.dll
Output/
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,11 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>xCopy "$(TargetPath)" "$(SolutionDir)..\Output\" /y</PostBuildEvent>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,11 @@
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>xCopy "$(TargetPath)" "$(SolutionDir)..\Output\" /y</PostBuildEvent>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,11 @@
<Compile Include="Units\VariableAdder.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>xCopy "$(TargetPath)" "$(SolutionDir)..\Output\" /y</PostBuildEvent>
</PropertyGroup>
</Project>

0 comments on commit 6e8bc9f

Please sign in to comment.