summaryrefslogtreecommitdiff
path: root/xmake/scripts/vsxmake/vsproj/templates/Xmake.Custom.targets
blob: 8a5153db85c98bf11df0080d31633fa71695eb5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <!-- inherit parent settings -->
  <Import Condition="Exists('$(MSBuildThisFileDirectory)\..\Xmake.Custom.targets')"
    Project="$(MSBuildThisFileDirectory)\..\Xmake.Custom.targets" />

  <!-- Override these targets to customize your build workflow -->
  <!--
    If you uncomment targets below,
    targets with same name that comes from ../Xmake.Custom.targets will be overrided.

    You can also define your own targets and call them like:
      <Target Name="BeforeBuild">
        <CallTarget Targets="CustomStep1;CustomStep2" />
      </Target>
    
    To find task that you can used in custom targets,
    see: https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-task-reference
  -->

  <!-- <Target Name="BeforeRebuild"></Target> -->
  <!-- <Target Name="AfterRebuild"></Target> -->
  <!-- <Target Name="BeforeBuild"></Target> -->
  <!-- <Target Name="AfterBuild"></Target> -->
  <!-- <Target Name="BeforeClean"></Target> -->
  <!-- <Target Name="AfterClean"></Target> -->
  <!-- <Target Name="BeforeBuildFiles"></Target> -->
  <!-- <Target Name="AfterBuildFiles"></Target> -->
</Project>