Inno-Setup-issrc/Projects/Src/Shared.DotNetVersion.pas

20 lines
402 B
ObjectPascal

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