Skip to content

Commit dbb819b

Browse files
Fixed missing assembly reference for google protobuf. (#6099)
1 parent fb2af76 commit dbb819b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

com.unity.ml-agents/Editor/Unity.ML-Agents.Editor.asmdef

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
],
1212
"excludePlatforms": [],
1313
"allowUnsafeCode": false,
14-
"overrideReferences": false,
15-
"precompiledReferences": [],
14+
"overrideReferences": true,
15+
"precompiledReferences": [
16+
"Google.Protobuf_Packed.dll"
17+
],
1618
"autoReferenced": true,
1719
"defineConstraints": [],
1820
"versionDefines": [

com.unity.ml-agents/Runtime/Grpc/Unity.ML-Agents.CommunicatorObjects.asmdef

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"includePlatforms": [],
66
"excludePlatforms": [],
77
"allowUnsafeCode": false,
8-
"overrideReferences": false,
8+
"overrideReferences": true,
99
"precompiledReferences": [
1010
"System.IO.Abstractions.dll",
11-
"Google.Protobuf.dll",
12-
"Grpc.Core.dll"
11+
"Grpc.Core.dll",
12+
"Google.Protobuf_Packed.dll"
1313
],
1414
"autoReferenced": true,
1515
"defineConstraints": [],
1616
"versionDefines": [],
1717
"noEngineReferences": false
18-
}
18+
}

0 commit comments

Comments
 (0)