私の知る限り、VS にはこのためのユーザー インターフェイス サポートはありませんが、次のようにプロジェクト ファイルを手動で編集できます。
<ItemGroup Condition=" '$(Configuration)' == 'DebugForAutoCad' ">
<Reference Include="somref"/>
<Reference Include="somotherref />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'DebugForAutoCad' ">
<OutputPath>somePath<OutputPath/>
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)' == 'DebugForBricsCAD' ">
<Reference Include="anohterRef"/>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'DebugForBricsCAD' ">
<OutputPath>someOtherPath<OutputPath/>
</PropertyGroup>
等々。複数のプロジェクトでこれを行う必要がある場合は、共通のものをすべて別のファイルに入れ、Import
.