Runtime version in a .net standard project

Hi,
Ive noticed all my .net standard libraries have a runtime version (.Net) setting and its set to v25. Isnt that a mistake ?

Cheers,
John

Not unless you wanna run on .NET 1.0 or 1.1?

Was that there before ? The values dont seem to make sense. I have v10, v11 and v25

it’s always been there, yes, and those are the three valid values. .NET 2.0 and latter use the 2.5 runtime format, so technically i suppose we could remove the setting from public visibility, as i don’t believe we support actually building for 1.1 and 1.0 anymore (and not sure anyone would reasonably want to). Note that this is setting is not the same as the TargetFramework(Version).

@ck, any reason to keep this setting publicly visibly/available at all?

Nope. We can remove ir

1 Like