Skip to content

Commit 6b8d7a1

Browse files
authored
KSPCommon.targets: remove obsolete comment, minor housekeeping
1 parent 92ce71c commit 6b8d7a1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

KSPCommon.targets

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Condition=" '$(KSPCommonPropsImported)' == '' " Project ="KSPCommon.props" />
44

5-
<!--MSBuild targets-->
6-
<!-- this might not be the best way to specify these since there can only be one BeforeBuild or AfterBuild target-->
7-
<Target Name="BeforeBuildScript">
5+
<!-- Pre/post build targets -->
6+
<Target Name="BeforeBuildScript" BeforeTargets="Build">
87
</Target>
98
<Target Name="PostBuildScript" AfterTargets="Build">
109
<CallTarget Targets="CopyBinariesToRepo" />
@@ -13,7 +12,7 @@
1312
<!--Custom Targets-->
1413

1514
<!-- this probably isn't the best way to do this, because it doesn't necessarily get run when switching build configs (debug/release)-->
16-
<!-- make sure to always to a rebuild when switching configs and you should be fine -->
15+
<!-- make sure to always do a rebuild when switching configs and you should be fine -->
1716
<Target Name="CopyBinariesToRepo">
1817
<ItemGroup>
1918
<BinariesToCopy Include="$(TargetDir)\*.*" />

0 commit comments

Comments
 (0)