ProjectGenerationFlag.cs 655 B

1234567891011121314151617181920212223
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Unity Technologies.
  3. * Copyright (c) Microsoft Corporation. All rights reserved.
  4. * Licensed under the MIT License. See License.txt in the project root for license information.
  5. *--------------------------------------------------------------------------------------------*/
  6. using System;
  7. namespace Microsoft.Unity.VisualStudio.Editor
  8. {
  9. [Flags]
  10. public enum ProjectGenerationFlag
  11. {
  12. None = 0,
  13. Embedded = 1,
  14. Local = 2,
  15. Registry = 4,
  16. Git = 8,
  17. BuiltIn = 16,
  18. Unknown = 32,
  19. PlayerAssemblies = 64,
  20. LocalTarBall = 128,
  21. }
  22. }