-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.targets
73 lines (66 loc) · 3.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Target Name="Vars">
<Message Text="================== Project65 macros ===================" />
<Message Text="SourceRoot [$(SourceRoot)]" />
<Message Text="Pj64SourceRoot [$(Pj64SourceRoot)]" />
<Message Text="BuildRoot [$(BuildRoot)]" />
<Message Text="TargetRoot [$(TargetRoot)]" />
<Message Text="BaseIntDir [$(BaseIntDir)]" />
<Message Text="BaseOutDir [$(BaseOutDir)]" />
<Message Text="BuildVersion [$(BuildVersion)]" />
<Message Text="================== MSBuild misc macros ===================" />
<Message Text="MSBuildToolsPath [$(MSBuildToolsPath)]" />
<Message Text="BuildDependsOn [$(BuildDependsOn)]" />
<Message Text="================== C++ misc macros ===================" />
<Message Text="VCTargetsPath [$(VCTargetsPath)]" />
<Message Text="IncludePath [$(IncludePath)]" />
<Message Text="================== C++ Common macros ===================" />
<Message Text="Configuration [$(Configuration)]" />
<Message Text="DevEnvDir [$(DevEnvDir)]" />
<Message Text="FrameworkDir [$(FrameworkDir)]" />
<Message Text="FrameworkSDKDir [$(FrameworkSDKDir)]" />
<Message Text="FrameworkVersion [$(FrameworkVersion)]" />
<Message Text="FxCopDir [$(FxCopDir)]" />
<Message Text="IntDir [$(IntDir)]" />
<Message Text="OutDir [$(OutDir)]" />
<Message Text="Platform [$(Platform)]" />
<Message Text="PlatformShortName [$(PlatformShortName)]" />
<Message Text="ProjectDir [$(ProjectDir)]" />
<Message Text="ProjectExt [$(ProjectExt)]" />
<Message Text="ProjectFileName [$(ProjectFileName)]" />
<Message Text="ProjectName [$(ProjectName)]" />
<Message Text="ProjectPath [$(ProjectPath)]" />
<Message Text="PublishDir [$(PublishDir)]" />
<Message Text="RemoteMachine [$(RemoteMachine)]" />
<Message Text="RootNameSpace [$(RootNameSpace)]" />
<Message Text="SolutionDir [$(SolutionDir)]" />
<Message Text="SolutionExt [$(SolutionExt)]" />
<Message Text="SolutionFileName [$(SolutionFileName)]" />
<Message Text="SolutionName [$(SolutionName)]" />
<Message Text="SolutionPath [$(SolutionPath)]" />
<Message Text="TargetDir [$(TargetDir)]" />
<Message Text="TargetExt [$(TargetExt)]" />
<Message Text="TargetFileName [$(TargetFileName)]" />
<Message Text="TargetName [$(TargetName)]" />
<Message Text="TargetPath [$(TargetPath)]" />
<Message Text="VCInstallDir [$(VCInstallDir)]" />
<Message Text="VSInstallDir [$(VSInstallDir)]" />
<Message Text="WebDeployPath [$(WebDeployPath)]" />
<Message Text="WebDeployRoot [$(WebDeployRoot)]" />
<Message Text="================== .NET Common macros ===================" />
<Message Text="IntermediateOutputPath [$(IntermediateOutputPath)]" />
<Message Text="BaseOutputPath [$(BaseOutputPath)]" />
<Message Text="OutputPath [$(OutputPath)]" />
<!-- <Message Text="================== Obsolete macros ===================" />
<Message Text="InputDir [$(InputDir)]" />
<Message Text="InputExt [$(InputExt)]" />
<Message Text="InputFileName [$(InputFileName)]" />
<Message Text="InputName [$(InputName)]" />
<Message Text="InputPath [$(InputPath)]" />
<Message Text="ParentName [$(ParentName)]" />
<Message Text="SafeInputName [$(SafeInputName)]" />
<Message Text="SafeParentName [$(SafeParentName)]" />
<Message Text="SafeRootNamespace [$(SafeRootNamespace)]" /> -->
</Target>
</Project>