123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <Rule
- Name="SliceCompileFile"
- DisplayName="File Properties"
- PageTemplate="generic"
- Description="File Properties"
- xmlns="http://schemas.microsoft.com/build/2009/properties">
- <Rule.DataSource>
- <DataSource Persistence="ProjectFile" Label="IceBuilder" HasConfigurationCondition="false" ItemType="SliceCompile" SourceOfDefaultValue="AfterContext"/>
- </Rule.DataSource>
- <Rule.Categories>
- <Category Name="Advanced" DisplayName="Advanced" />
- <Category Name="Misc" DisplayName="Misc" />
- </Rule.Categories>
- <DynamicEnumProperty
- Name="{}{ItemType}"
- DisplayName="Build Action"
- Category="Advanced"
- Description="How the file relates to the build and deployment processes."
- EnumProvider="ItemTypes" />
- <StringProperty
- Name="Identity"
- Visible="false"
- ReadOnly="true"
- Category="Misc"
- Description="The item specified in the Include attribute.">
- <StringProperty.DataSource>
- <DataSource Persistence="Intrinsic" ItemType="SliceCompile" PersistedName="Identity" SourceOfDefaultValue="AfterContext" />
- </StringProperty.DataSource>
- </StringProperty>
- <StringProperty
- Name="FullPath"
- DisplayName="Full Path"
- ReadOnly="true"
- Category="Misc"
- Description="Location of the file.">
- <StringProperty.DataSource>
- <DataSource Persistence="Intrinsic" ItemType="SliceCompile" PersistedName="FullPath" SourceOfDefaultValue="AfterContext" />
- </StringProperty.DataSource>
- </StringProperty>
- <StringProperty Name="Link" Visible="false">
- <StringProperty.DataSource>
- <DataSource PersistenceStyle="Attribute" SourceOfDefaultValue="AfterContext" />
- </StringProperty.DataSource>
- <StringProperty.Metadata>
- <NameValuePair Name="DoNotCopyAcrossProjects" Value="true" />
- </StringProperty.Metadata>
- </StringProperty>
- </Rule>
|