forked from UbiquityDotNET/Argument.Validators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
16 lines (15 loc) · 856 Bytes
/
Directory.Build.targets
File metadata and controls
16 lines (15 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project>
<!--
Repository wide Targets support
-->
<Target Name="ShowBuildParams" BeforeTargets="Build;Pack">
<Message Importance="normal" Text=" BuildRootDir: $(BuildRootDir)" />
<Message Importance="normal" Text=" BaseBuildOutputPath: $(BaseBuildOutputPath)" />
<Message Importance="normal" Text="BaseIntermediateOutputPath: $(BaseIntermediateOutputPath)" />
<Message Importance="normal" Text=" IntDir: $(IntDir)" />
<Message Importance="normal" Text=" BaseOutputPath: $(BaseOutputPath)" />
<Message Importance="normal" Text=" FullBuildNumber: $(FullBuildNumber)"/>
<Message Importance="normal" Text=" PackageVersion: $(PackageVersion)"/>
<Message Importance="normal" Text=" FileVersion: $(FileVersion)"/>
</Target>
</Project>