version of .net framework launch not match .net framework bootstrapper project

后端 未结 3 917
迷失自我
迷失自我 2021-02-20 04:33

When I build the release project of the vb.net 2010 I just started using, I get two warnings:

  1. the version of the .net framedwork launch condition does not ma

3条回答
  •  难免孤独
    2021-02-20 05:24

    This error is because of a mismatch. You can fix it by making either one of them match the other.

    One is the "Launch Condition." The other is the "Prerequisite."

    To change the Launch Condition:

    • right click your setup project in the Solution Explorer
    • click View - Launch Conditions
    • select the ".NET Framework" item under Launch Conditions
    • in the properties window, see the Version item. You can open the drop down menu to select the appropriate framework version.

    To change the Prerequisite:

    • right click your setup project in the Solution Explorer
    • choose properties, a Properties Pages dialog appears
    • click the "Prerequisites..." button
    • check and uncheck framework versions as appropriate

提交回复
热议问题