Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/NaCl/Properties/nacl_general_ps.xml

Issue 10977007: Rename folder Properties -> Props (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <Rule
4 Name="ConfigurationGeneral"
5 DisplayName="General"
6 PageTemplate="generic"
7 Description="General"
8 xmlns="http://schemas.microsoft.com/build/2009/properties">
9 <Rule.Categories>
10 <Category Name="General" DisplayName="General" Description="General" />
11 <Category Name="NativeClient" DisplayName="Native Client" Description="Nativ e Client General Properties" />
12 </Rule.Categories>
13 <Rule.DataSource>
14 <DataSource Persistence="ProjectFile" Label="Configuration" />
15 </Rule.DataSource>
16
17 <StringProperty Name="NaClAddInVersion" Visible="false"
18 Category="NativeClient" Default="">
19 <StringProperty.DataSource>
20 <DataSource Persistence="ProjectFile" Label=""/>
21 </StringProperty.DataSource>
22 </StringProperty>
23
24 <StringProperty Name="VSNaClSDKRoot" DisplayName="NaCl SDK Root"
25 Description="Specifies the path to the Native Client SDK root directory."
26 Category="NativeClient" Default=""
27 Subtype="folder" F1Keyword="VC.Project.VCConfiguration.NaClSDK Root">
28 <StringProperty.DataSource>
29 <DataSource Persistence="ProjectFile" Label="" />
30 </StringProperty.DataSource>
31 </StringProperty>
32
33 <StringProperty Name="NaClManifestPath" DisplayName="Manifest File Path"
34 Description="Specifies the path to the .nmf file for this proj ect configuration."
35 Category="NativeClient" Default=""
36 Subtype="file" F1Keyword="VC.Project.VCConfiguration.NaClManif estPath">
37 <StringProperty.DataSource>
38 <DataSource Persistence="ProjectFile" Label="" />
39 </StringProperty.DataSource>
40 </StringProperty>
41
42 <StringProperty Name="NaClIrtPath" DisplayName="IRT File Path"
43 Description="Specifies the path to the NaCl Intermediate Runti me file for this project configuration."
44 Category="NativeClient" Default=""
45 Subtype="file" F1Keyword="VC.Project.VCConfiguration.NaClIrtPa th">
46 <StringProperty.DataSource>
47 <DataSource Persistence="ProjectFile" Label="" />
48 </StringProperty.DataSource>
49 </StringProperty>
50
51 <StringProperty Name="NaClWebServerPort" DisplayName="Web Server Port"
52 Description="Specifies the port number to use while hosting th e nexe"
53 Category="NativeClient" Default=""
54 F1Keyword="VC.Project.VCConfiguration.NaClWebServerPort">
55 <StringProperty.DataSource>
56 <DataSource Persistence="ProjectFile" Label="" />
57 </StringProperty.DataSource>
58 </StringProperty>
59
60 <EnumProperty Name="ToolchainName" DisplayName="Toolchain" Category="NativeCli ent">
61 <EnumValue Name="newlib" DisplayName="newlib" />
62 <EnumValue Name="glibc" DisplayName="glibc" />
63 </EnumProperty>
64
65 <StringProperty Name="OutDir" DisplayName="Output Directory"
66 Description="Specifies a relative path to the output file dire ctory; can include environment variables."
67 Category="General" Default="$(SolutionDir)$(Configuration)\"
68 Subtype="folder"
69 F1Keyword="VC.Project.VCConfiguration.OutputDirectory">
70 <StringProperty.DataSource>
71 <DataSource Persistence="ProjectFile" Label="" />
72 </StringProperty.DataSource>
73 </StringProperty>
74
75 <StringProperty Name="IntDir" DisplayName="Intermediate Directory"
76 Description="Specifies a relative path to the intermediate fil e directory; can include environment variables."
77 Category="General" Default="$(Configuration)\"
78 Subtype="folder"
79 F1Keyword="VC.Project.VCConfiguration.IntermediateDirectory">
80 <StringProperty.DataSource>
81 <DataSource Persistence="ProjectFile" Label="" />
82 </StringProperty.DataSource>
83 </StringProperty>
84
85 <StringProperty Name="TargetName" DisplayName="Target Name"
86 Description="Specifies a file name that this project will gene rate."
87 F1Keyword="VC.Project.VCConfiguration.TargetName"
88 Category="General" Default="$(ProjectName)"
89 >
90 <StringProperty.DataSource>
91 <DataSource Persistence="ProjectFile" Label="" />
92 </StringProperty.DataSource>
93 </StringProperty>
94
95 <StringProperty Name="TargetExt" DisplayName="Target Extension"
96 Description="Specifies a file extension that this project will generate. (Example: .exe or .dll)"
97 F1Keyword="VC.Project.VCConfiguration.TargetExt"
98 Category="General"
99 >
100 <StringProperty.DataSource>
101 <DataSource Persistence="ProjectFile" Label="" />
102 </StringProperty.DataSource>
103 </StringProperty>
104
105 <StringListProperty Name="ExtensionsToDeleteOnClean" DisplayName="Extensions t o Delete on Clean"
106 Description="Semi-colon delimited wildcard specification f or which files in the intermediate directory to delete on clean or rebuild."
107 Category="General" Separator=";"
108 F1Keyword="VC.Project.VCConfiguration.DeleteExtensionsOnCl ean">
109 <StringListProperty.DataSource>
110 <DataSource Persistence="ProjectFile" Label="" />
111 </StringListProperty.DataSource>
112 </StringListProperty>
113
114 <StringProperty Name="BuildLogFile" DisplayName="Build Log File"
115 Description="Specifies the build log file to write to when bui ld logging is enabled."
116 F1Keyword="VC.Project.VCConfiguration.BuildLogFile"
117 Category="General" Default="$(ProjectDir)\$(MSBuildProjectName ).log"
118 Subtype="file">
119 <StringProperty.DataSource>
120 <DataSource Persistence="ProjectFile" ItemType="BuildLog" P ersistedName="Path" />
121 </StringProperty.DataSource>
122 </StringProperty>
123
124 </Rule>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698