Reputation: 710
I have a project with Silverlight and when I saw th code of the project file with notepad I have this code:
<ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B}
But I would like to know the version of Silverlight that I'm using but I don't know how...
Upvotes: 1
Views: 1049
Reputation: 6629
To set or view the Silverlight target version of your project, on the properties page, Silverlight tab, there is a dropdown called Target Silverlight Version. The project file entries will look like so:
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
Upvotes: 2