SliceCompile.CSharp.xaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (c) ZeroC, Inc. All rights reserved. -->
  3. <Rule
  4. Name="SliceCompile"
  5. DisplayName="Ice Builder"
  6. PageTemplate="generic"
  7. Order="201"
  8. Description="Ice Builder project settings"
  9. xmlns="http://schemas.microsoft.com/build/2009/properties">
  10. <Rule.DataSource>
  11. <DataSource
  12. Persistence="ProjectFile"
  13. ItemType=""
  14. Label="IceBuilder"
  15. HasConfigurationCondition="false"
  16. SourceOfDefaultValue="AfterContext"/>
  17. </Rule.DataSource>
  18. <StringProperty
  19. Name="OutputDir"
  20. DisplayName="Output Directory"
  21. Description="Directory of C# source files generated by slice2cs."
  22. Subtype="folder"
  23. Category="General">
  24. <StringProperty.DataSource>
  25. <DataSource
  26. Persistence="ProjectFile"
  27. ItemType="SliceCompile"
  28. Label="IceBuilder"
  29. HasConfigurationCondition="false"
  30. SourceOfDefaultValue="AfterContext"/>
  31. </StringProperty.DataSource>
  32. </StringProperty>
  33. <StringListProperty
  34. Name="IncludeDirectories"
  35. DisplayName="Include Directories"
  36. Description="Specifies one or more directories to add to the Slice include path; use semi-colons (;) as directory separators."
  37. Subtype="folder"
  38. Category="General">
  39. <StringListProperty.DataSource>
  40. <DataSource
  41. Persistence="ProjectFile"
  42. ItemType="SliceCompile"
  43. Label="IceBuilder"
  44. HasConfigurationCondition="false"
  45. SourceOfDefaultValue="AfterContext"/>
  46. </StringListProperty.DataSource>
  47. </StringListProperty>
  48. <StringListProperty
  49. DisplayName="Additional Options"
  50. Name="AdditionalOptions"
  51. Description="Additional command-line options to pass to slice2cs.">
  52. <StringListProperty.DataSource>
  53. <DataSource
  54. Persistence="ProjectFile"
  55. ItemType="SliceCompile"
  56. Label="IceBuilder"
  57. HasConfigurationCondition="false"
  58. SourceOfDefaultValue="AfterContext"/>
  59. </StringListProperty.DataSource>
  60. </StringListProperty>
  61. </Rule>