VSVersion.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #region BSD License
  2. /*
  3. Copyright (c) 2008-2009 Matthew Holmes ([email protected]), Dan Moorehead ([email protected]), John Anderson ([email protected])
  4. Redistribution and use in source and binary forms, with or without modification, are permitted
  5. provided that the following conditions are met:
  6. * Redistributions of source code must retain the above copyright notice, this list of conditions
  7. and the following disclaimer.
  8. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
  9. and the following disclaimer in the documentation and/or other materials provided with the
  10. distribution.
  11. * The name of the author may not be used to endorse or promote products derived from this software
  12. without specific prior written permission.
  13. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  14. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  15. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  16. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  17. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  18. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  19. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20. */
  21. #endregion
  22. namespace Prebuild.Core.Targets
  23. {
  24. /// <summary>
  25. ///
  26. /// </summary>
  27. public enum VSVersion
  28. {
  29. /// <summary>
  30. /// Visual Studio 2002
  31. /// </summary>
  32. VS70,
  33. /// <summary>
  34. /// Visual Studio 2003
  35. /// </summary>
  36. VS71,
  37. /// <summary>
  38. /// Visual Studio 2005
  39. /// </summary>
  40. VS80,
  41. /// <summary>
  42. /// Visual Studio 2008
  43. /// </summary>
  44. VS90,
  45. /// <summary>
  46. /// Visual Studio 2010
  47. /// </summary>
  48. VS10,
  49. /// <summary>
  50. /// Visual Studio 2012
  51. /// </summary>
  52. VS11,
  53. /// <summary>
  54. /// Visual Studio 2013
  55. /// </summary>
  56. VS12,
  57. /// <summary>
  58. /// Visual Studio 2015
  59. /// </summary>
  60. VS15,
  61. VS17,
  62. VS19
  63. }
  64. }