3

How can i configure GMap.NET for c# .NET 4.0 . I found this " If you target .NET4, use this configuration :

<?xml version="1.0"?><configuration><startup useLegacyV2RuntimeActivationPolicy="true" ><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />   </startup ></configuration >

" but i don't know where to put this code

Regards, Alex Badescu

skaffman
  • 398,947
  • 96
  • 818
  • 769
Alex
  • 10,869
  • 28
  • 93
  • 165

2 Answers2

3

Try to find the app.config file in the project. That configuration should go there.

alex
  • 3,710
  • 32
  • 44
1

That looks like an app.config file to me (which will be renamed automatically by VS based on your assembly name).

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194