Identifying the Framework in a .csproj file
When you are trying to identify the framework from a csproj file, sometimes there are multiple versions of frameworks mentioned.
i.e. TargetFramework 2.0
then Some bootstrapper package will include .Net Framework 3.5
Which one is it?
2 Replies
i am not sure what you mean
i guess, you are looking at some legacy .NET Framework programs that use ClickOnce
if TargetFrameworkVersion in the project file says v2.0, then that DLL only references the .NET Framework 2.0 class libraries. so, it's probably true that it only requires .NET Framework 2.0. but, maybe not
Yeah that sounds about right.