Change assembly name based on configuration (Visual Studio 2005/2008)

后端 未结 1 925
伪装坚强ぢ
伪装坚强ぢ 2020-12-05 17:46

Is it possible to change the assembly name based on the project configuration?

I have tried conditional pragmas on the assemblyinfo.cs file, but that only changes th

相关标签:
1条回答
  • 2020-12-05 18:34

    If you right click on your project and choose "Edit Project File" (I'm in 2008 here and it may be a new option, if it is then just open the project file in any old text editor) you should see something similar to the following:

      <PropertyGroup>
        ...
        <AssemblyName>ClassLibrary1</AssemblyName>
        ...
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
        ...
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
        ...
      </PropertyGroup>
    

    Basically any properties that aren't overriden in a more specific property group are inherited from the more general, first group. So to achieve what you want just edit the file so that the AssemblyName tag is defined in each of the specific groups:

      <PropertyGroup>
        ...
        <AssemblyName>ClassLibrary1</AssemblyName>
        ...
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
        ...
        <AssemblyName>ClassLibrary1Debug</AssemblyName>
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
        ...
        <AssemblyName>ClassLibrary1Release</AssemblyName>
      </PropertyGroup>
    

    This will change the assembly name on a per config basis.

    0 讨论(0)
提交回复
热议问题