locked
Where can i find the config file for Visual Studio compilation ? RRS feed

  • Question

  • User1253338400 posted

    Hi ,

    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 ?

    thanks

    Thursday, March 12, 2020 9:08 PM

Answers

  • 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

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Friday, March 13, 2020 2:31 AM