-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.targets
44 lines (37 loc) · 2.22 KB
/
Directory.Build.targets
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project>
<!-- For build debugging purposes. -->
<Target Name="Vars">
<Message Text="General" />
<Message Text="=> SolutionDir [$(SolutionDir)]" />
<Message Text="=> Configuration [$(Configuration)]" />
<Message Text="=> Platform [$(Platform)]" />
<Message Text="=> PlatformTarget [$(PlatformTarget)]" />
<Message Text="=> PlatformName [$(PlatformName)]" />
<Message Text="=> BaseIntermediateOutputPath [$(BaseIntermediateOutputPath)]" />
<Message Text="=> IntermediateOutputPath [$(IntermediateOutputPath)]" />
<Message Text="=> BaseOutputPath [$(BaseOutputPath)]" />
<Message Text="=> OutputPath [$(OutputPath)]" />
<Message Text="=> IntDir [$(IntDir)]" />
<Message Text="=> OutDir [$(OutDir)]" />
<Message Text="=> TargetDir [$(TargetDir)]" />
<Message Text="=> TargetPath [$(TargetPath)]" />
<Message Text="%0A" />
<Message Text="UWP" />
<Message Text="=> GeneratedFilesDir [$(GeneratedFilesDir)]" />
<Message Text="=> UnmergedWinmdDirectory [$(UnmergedWinmdDirectory)]" />
<Message Text="=> MergedWinmdDirectory [$(MergedWinmdDirectory)]" />
<Message Text="%0A" />
<Message Text="macOS" />
<Message Text="=> DeviceSpecificOutputPath [$(DeviceSpecificOutputPath)]" />
<Message Text="=> XamarinMacFrameworkRoot [$(XamarinMacFrameworkRoot)]" />
<Message Text="=> XamarinMacFrameworkVersion [$(XamarinMacFrameworkVersion)]" />
<Message Text="%0A" />
<Message Text="=> ProjectHome [$(ProjectHome)]" />
<Message Text="=> UserRootDir [$(UserRootDir)]" />
<Message Text="=> MSBuildProjectDirectory [$(MSBuildProjectDirectory)]" />
<Message Text="=> MSBuildExtensionsPath [$(MSBuildExtensionsPath)]" />
<Message Text="=> MSBuildExtensionsPath32 [$(MSBuildExtensionsPath32)]" />
<Message Text="=> MSBuildExtensionsPath64 [$(MSBuildExtensionsPath64)]" />
<Message Text="=> VCTargetsPath [$(VCTargetsPath)]" />
</Target>
</Project>