Version: 2019.4
Automatic conflict resolution
Solución de problemas

Overriding Unity’s conflict resolution

To override the automatically selected version with a different version, explicitly define the package version you want to use in the project. You can either install the package version through the Package Manager window or edit the project’s manifest directly.

For example, this project has the following dependencies value in its manifest.json file:

{
  "dependencies": {
    "A" : "1.0.0",
    "C" : "2.0.0"
  }
}

Package A has a dependency on 1.0.0 of Package B, and Package C has a dependency on 2.0.0 of Package B:

Overriding package versions in the manifest
Overriding package versions in the manifest

In this case, the Package Manager flags Package B as being in conflict. Unity displays a conflict warning in the console and loads version 2.0.0 of Package B.

To suppress the warning, explicitly add version 2.0.0 of Package B to the project:

{
  "dependencies": {
    "A" : "1.0.0",
    "B" : "2.0.0",
    "C" : "2.0.0"
  }
}

Alternatively, you can specify a third version in the manifest.json file:

{
  "dependencies": {
    "A" : "1.0.0",
    "B" : "3.0.0",
    "C" : "2.0.0"
  }
}

In this case, there is no conflict and Unity loads only version 3.0.0 of Package B.

Automatic conflict resolution
Solución de problemas
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961