Skip to content

Instantly share code, notes, and snippets.

@joeybeninghove
Created February 24, 2025 03:40
Show Gist options
  • Save joeybeninghove/e8c4ba0449a697d564bded46599deee4 to your computer and use it in GitHub Desktop.
Save joeybeninghove/e8c4ba0449a697d564bded46599deee4 to your computer and use it in GitHub Desktop.
Quantower Post-Build Event
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CopyToQuantower" AfterTargets="PostBuildEvent">
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFolder="C:\Quantower\Settings\Scripts\Strategies"/>
</Target>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<!-- ... -->
<Import Project="Quantower.targets"/>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment