User288213138 posted
Hi robby32,
robby32
when i change Visual Studio to compile in Release and use x64 as the platform, does Visual studio modify some config file that it reads when it compiles ?
If so where is this file located ?
If you want to modify the vs compilation by the file, you can do it in the project file (*.csproj) and look for a PropertyGroup with the right condition.
If you want to build in Release mode for "x64", you must have something like this in your project file:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
...
</PropertyGroup>
Best regards,
Sam