Configure GMap.NET for .NET 4.0

How to configure GMap.NET for C # .NET 4.0. I found this "If you are targeting .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

+3
source share
2 answers

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

+3
source

It looks like the app.config file for me (which will be automatically renamed VS based on the name of your assembly).

+1
source

Source: https://habr.com/ru/post/1770690/


All Articles