Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make IsNetFrameworkRuntime initializer less dangerous #385

Closed
pardeike opened this issue Feb 28, 2021 · 0 comments
Closed

Make IsNetFrameworkRuntime initializer less dangerous #385

pardeike opened this issue Feb 28, 2021 · 0 comments
Assignees

Comments

@pardeike
Copy link
Owner

TypeByName("System.Runtime.InteropServices.RuntimeInformation")?.GetProperty("FrameworkDescription")

Use

public static bool IsNetFrameworkRuntime { get; } = 
Type.GetType("System.Runtime.InteropServices.RuntimeInformation, mscorlib", throwOnError: false)
?.GetProperty("FrameworkDescription").GetValue(null, null).ToString().StartsWith(".NET Framework") 
?? IsMonoRuntime is false;

to not scan through assembly and possibly trigger code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant