Browse Source

Make it easier to map between the enum-based and integer-based VS versions.

pull/698/head
Joao Matos 9 years ago
parent
commit
c55a8fa79c
  1. 8
      src/Core/Toolchains/MSVCToolchain.cs

8
src/Core/Toolchains/MSVCToolchain.cs

@ -11,10 +11,10 @@ namespace CppSharp @@ -11,10 +11,10 @@ namespace CppSharp
/// Represents a Visual Studio version.
public enum VisualStudioVersion
{
VS2012,
VS2013,
VS2015,
Latest
VS2012 = 11,
VS2013 = 12,
VS2015 = 14,
Latest,
}
/// Represents a toolchain with associated version and directory.

Loading…
Cancel
Save