Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProjectGenerationFlag.cs 281B

123456789101112131415161718
  1. using System;
  2. namespace Packages.Rider.Editor.ProjectGeneration
  3. {
  4. [Flags]
  5. enum ProjectGenerationFlag
  6. {
  7. None = 0,
  8. Embedded = 1,
  9. Local = 2,
  10. Registry = 4,
  11. Git = 8,
  12. BuiltIn = 16,
  13. Unknown = 32,
  14. PlayerAssemblies = 64,
  15. LocalTarBall = 128,
  16. }
  17. }