user1911
user1911

Reputation: 710

How know the version of Silverlight - Project Visual Studio 2012

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

Answers (1)

Rob J
Rob J

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

Related Questions