zoukankan      html  css  js  c++  java
  • Visual Studio Solution Configuration

    https://msdn.microsoft.com/en-us/library/bb166577.aspx

    Solution configurations store solution-level properties.

    They direct the behavior of the Start (F5) key and Buildcommands.

    By default, these commands build and start the debug configuration.

    Both commands execute in the context of a solution configuration.

    This means that the user can expect F5 to start and build whatever the active solution is configured through the settings.

    The environment is designed to optimize for solutions rather than projects when it comes to building and running.

    The standard Visual Studio toolbar contains a Start button and a solution configuration drop-down to the right of the Start button.

    This list allows users to choose the configuration to be started when F5 is pressed, create their own solution configurations, or edit an existing configuration.

    Note:

    There are no extensibility interfaces to create or edit the solution configurations.

    You must useDTE.SolutionBuilder.

    However, there are extensibility APIs for managing the solution build. For more information, see IVsSolutionBuildManager2.

    Here is how you can implement the solution configurations supported by your project type:

    • Project   第一列

      Displays the names of projects found in the current solution.

    • Configuration  第二列

      To provide the list of configurations supported by your project type and displayed in the property pages, implement IVsCfgProvider2.

      The Configuration column displays the name of the project configuration to build in this solution configuration, and lists all of the project configurations when you click the arrow button. The environment calls theGetCfgNames method to fill out this list. If the GetCfgProviderProperty method indicates that the project supports configuration editing, New or Edit selections are also displayed under the Configuration heading. Each of these selections launch dialog boxes that call methods of the IVsCfgProvider2 interface to edit the project's configurations.

      If a project does not support configurations, the Configuration column displays None and is disabled.

    • Platform   第三列

      Displays the platform the selected project configuration builds for, and lists all of the available platforms for the project when you click the arrow button. The environment calls the GetPlatformNames method to fill out this list. If the GetCfgProviderProperty method indicates that the project supports platform editing, New or Edit selections are also displayed under the Platform heading. Each of these selections launch dialog boxes that callIVsCfgProvider2 methods to edit the project's available platforms.

      If a project does not support platforms, the platform column for that project displays None and is disabled.

    • Build  第四列

      Specifies whether or not the project is built by the current solution configuration. Unselected projects are not built when the solution-level build commands are invoked despite any project dependencies they contain. Projects not selected to be built are still included in debugging, running, packaging, and deployment of the solution.

    • Deploy  第五列

      Specifies whether or not the project will be deployed when the Start or Deploy commands are used with the selected solution build configuration. The check box for this field will be available if the project supports deploying by implementing the IVsDeployableProjectCfg interface on its IVsProjectCfg2 object.

    Once a new solution configuration is added, the user can select it from the Solution Configuration drop-down list box on the standard toolbar to build and/or start that configuration.

    特别注意Build列,如果不勾选的话,那么在生成解决方案的时候,就会忽略这个项目

    测试:

    1.新建一个winform的项目

    2.打开配置管理器

    3.将winform项目的Build取消勾选

    4.清理解决方案

    5.启动

  • 相关阅读:
    第一章 重构
    Android View的事件分发
    java.lang.NoSuchMethodError: android.view.View.setBackground
    handler消息机制
    魅族手机Listview下拉出现hold字样的奇葩问题解决方案
    数据结构--树,二叉树
    数据结构之栈和队列
    设计模式--六大原则
    ListView上下线添加
    Python 入门(七)函数
  • 原文地址:https://www.cnblogs.com/chucklu/p/4834769.html
Copyright © 2011-2022 走看看