The Profispojka
The Profispojka

Reputation: 41

Trying to add reference in visual studio (c#), but there are no tabs

I'd like to add reference to my Visual studio project. I'd like to add System.Windows.Shapes, which is probably in presentation framework. Everywhere on the internet it says, that it should be under .NET tab when adding reference, but I don't have any tabs when doing this. Can someone please help me? Thanks.

enter image description here

Upvotes: 2

Views: 1159

Answers (1)

Pawel Maga
Pawel Maga

Reputation: 5807

You are looking for reference in wrong place. Look at this tab:

assembly references

System.Windows library contains System.Windows.Shapes namespace.

If you do not see such library check that you have selected the proper value in the Target Framework field (Targeting)

Upvotes: 4

Related Questions