Shared.DotNetVersion.pas 402 B

12345678910111213141516171819
  1. unit Shared.DotNetVersion;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2024 Jordan Russell
  5. Portions by Martijn Laan
  6. For conditions of distribution and use, see LICENSE.TXT.
  7. .NET versions
  8. }
  9. interface
  10. type
  11. TDotNetVersion = (net11, net20, net30, net35, net4Client, net4Full, net45, net451, net452, net46, net461, net462, net47, net471, net472, net48, net481);
  12. implementation
  13. end.