이 작업을 수행하려면 csproj 파일에 새 속성 그룹을 추가해야했습니다.
구성 변환 추가 가 회색으로 표시되었습니다.
내 csproj에 다음 XML을 추가하고 프로젝트를 다시로드했습니다. 그런 다음 Add Config Transform을 사용할 수 있습니다. 일단 선택하면 내 추가 변환이 추가되었습니다.
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'IAT_CMCD|AnyCPU'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'UAT_CM|AnyCPU'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>