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

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

Issue 10983016: Fix for Visual Studio property sheets (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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <Rule 3 <Rule
4 Name="ConfigurationGeneral" 4 Name="ConfigurationGeneral"
5 DisplayName="General" 5 DisplayName="General"
6 PageTemplate="generic" 6 PageTemplate="generic"
7 Description="General" 7 Description="General"
8 xmlns="http://schemas.microsoft.com/build/2009/properties"> 8 xmlns="http://schemas.microsoft.com/build/2009/properties">
9 <Rule.Categories> 9 <Rule.Categories>
10 <Category Name="General" DisplayName="General" Description="General" /> 10 <Category Name="General" DisplayName="General" Description="General" />
11 <Category Name="NativeClient" DisplayName="Native Client" Description="Nativ e Client General Properties" />
11 </Rule.Categories> 12 </Rule.Categories>
12 <Rule.DataSource> 13 <Rule.DataSource>
13 <DataSource Persistence="ProjectFile" Label="Configuration" /> 14 <DataSource Persistence="ProjectFile" Label="Configuration" />
14 </Rule.DataSource> 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="NaClWebServerPort" DisplayName="Web Server Port"
43 Description="Specifies the port number to use while hosting th e nexe"
44 Category="NativeClient" Default=""
45 F1Keyword="VC.Project.VCConfiguration.NaClWebServerPort">
46 <StringProperty.DataSource>
47 <DataSource Persistence="ProjectFile" Label="" />
48 </StringProperty.DataSource>
49 </StringProperty>
50
51 <EnumProperty Name="ToolchainName" DisplayName="Toolchain" Category="NativeCli ent">
52 <EnumValue Name="newlib" DisplayName="newlib" />
53 <EnumValue Name="glibc" DisplayName="glibc" />
54 </EnumProperty>
55
56 <StringProperty Name="OutDir" DisplayName="Output Directory"
57 Description="Specifies a relative path to the output file dire ctory; can include environment variables."
58 Category="General" Default="$(SolutionDir)\$(Platform)\$(Toolc hain)\$(Configuration)\"
59 Subtype="folder"
60 F1Keyword="VC.Project.VCConfiguration.OutputDirectory">
61 <StringProperty.DataSource>
62 <DataSource Persistence="ProjectFile" Label="" />
63 </StringProperty.DataSource>
64 </StringProperty>
65
66 <StringProperty Name="IntDir" DisplayName="Intermediate Directory"
67 Description="Specifies a relative path to the intermediate fil e directory; can include environment variables."
68 Category="General" Default="$(Configuration)\"
69 Subtype="folder"
70 F1Keyword="VC.Project.VCConfiguration.IntermediateDirectory">
71 <StringProperty.DataSource>
72 <DataSource Persistence="ProjectFile" Label="" />
73 </StringProperty.DataSource>
74 </StringProperty>
75
76 <StringProperty Name="TargetName" DisplayName="Target Name"
77 Description="Specifies a file name that this project will gene rate."
78 F1Keyword="VC.Project.VCConfiguration.TargetName"
79 Category="General" Default="$(ProjectName)_$(PlatformArchitect ure)"
80 >
81 <StringProperty.DataSource>
82 <DataSource Persistence="ProjectFile" Label="" />
83 </StringProperty.DataSource>
84 </StringProperty>
85
86 <StringProperty Name="TargetExt" DisplayName="Target Extension"
87 Description="Specifies a file extension that this project will generate. (Example: .exe or .dll)"
88 F1Keyword="VC.Project.VCConfiguration.TargetExt"
89 Category="General"
90 >
91 <StringProperty.DataSource>
92 <DataSource Persistence="ProjectFile" Label="" />
93 </StringProperty.DataSource>
94 </StringProperty>
95
96 <StringListProperty Name="ExtensionsToDeleteOnClean" DisplayName="Extensions t o Delete on Clean"
97 Description="Semi-colon delimited wildcard specification f or which files in the intermediate directory to delete on clean or rebuild."
98 Category="General" Separator=";"
99 F1Keyword="VC.Project.VCConfiguration.DeleteExtensionsOnCl ean">
100 <StringListProperty.DataSource>
101 <DataSource Persistence="ProjectFile" Label="" />
102 </StringListProperty.DataSource>
103 </StringListProperty>
104
105 <StringProperty Name="BuildLogFile" DisplayName="Build Log File"
106 Description="Specifies the build log file to write to when bui ld logging is enabled."
107 F1Keyword="VC.Project.VCConfiguration.BuildLogFile"
108 Category="General" Default="$(ProjectDir)\$(MSBuildProjectName ).log"
109 Subtype="file">
110 <StringProperty.DataSource>
111 <DataSource Persistence="ProjectFile" ItemType="BuildLog" P ersistedName="Path" />
112 </StringProperty.DataSource>
113 </StringProperty>
114
15 </Rule> 115 </Rule>
OLDNEW
« no previous file with comments | « no previous file | visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/hello_world_gles.vcxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698