我正在为两个不同的人创建一个项目,我想通过define更改图标。例如:
#if customer1
//add code to select c:\path to resources\myimage1.ico for exe icon
#else
//add code to select c:\path to resources\myimage2.ico for exe icon
#endif
我知道你可以手动选择你想要的图标:
https://msdn.microsoft.com/en-us/library/339stzf7.aspx
但定义方式对我们使用git是有意义的,所以我们不必重新上载其他人的形象。我们可以简单地放置定义并让它使用该图像。感谢。
答案 0 :(得分:5)
您可以修改csproj文件,以便为这两个客户创建不同的构建配置。例如,您可以执行以下操作:
通过右键单击Visual Studio中解决方案资源管理器中的项目并单击“卸载项目”来卸载项目。
右键单击已卸载的项目,然后单击“编辑”
找到“ApplicationIcon”标签并将其替换为两个条件PropertyGroup,如下所示:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer1|AnyCPU' ">
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer2|AnyCPU' ">
<ApplicationIcon>netfol.ico</ApplicationIcon>
</PropertyGroup>
这将为Customer1和Customer2创建调试版本配置。
<ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer1|AnyCPU' ">
<Content Include="icon.ico" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer2|AnyCPU' ">
<Content Include="netfol.ico" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer1|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_Customer1\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Customer2|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug_Customer2\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>