Skip to content

Instantly share code, notes, and snippets.

@EgorBo
Created September 21, 2017 22:12
Show Gist options
  • Save EgorBo/48b8672622c035c2ba061574e2be6fbb to your computer and use it in GitHub Desktop.
Save EgorBo/48b8672622c035c2ba061574e2be6fbb to your computer and use it in GitHub Desktop.
[Flags]
public enum TargetFrameworkMonikers
{
Net45 = 0x1,
Net451 = 0x2,
Net452 = 0x4,
Net46 = 0x8,
Net461 = 0x10,
Net462 = 0x20,
Net463 = 0x40,
Netcore50 = 0x80,
Netcore50aot = 0x100,
Netcoreapp1_0 = 0x200,
Netcoreapp1_1 = 0x400,
NetFramework = 0x800,
Netcoreapp = 0x1000,
UapNotUapAot = 0x2000,
UapAot = 0x4000,
NetcoreCoreRT = 0x8000,
Mono = ????
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment