clement
clement

Reputation: 4266

know the KRE version used in one app

I want to know how Scott shown the version of KRE used on the application that he launched:

versions

I know how show .NET version (System.Environment.Version) but this is the KRE version.

I've found this on his blog and I think he did that on events. This is his blog page where he did it: scott blog

Upvotes: 0

Views: 49

Answers (1)

Victor Hurdugaci
Victor Hurdugaci

Reputation: 28425

This is how you get the runtime version programmatically.

If you just want to see it rather than using it in code, you might consider using the RuntimeInfo middleware from the Diagnostics package. See this sample

Upvotes: 1

Related Questions