Forum Discussion
MeshCreator
Feb 25, 2025Copper Contributor
Cloud Scripting Package error when publishing to Mesh
Unity version: 2022.3.34
Mesh version: 5.2414.130
Hello,
I get an error when I try to build and publish my scene to Mesh, see attachment.
There is a nuget.config file in the directory provided by the error message, see attachment.
From my limited knowledge I guess I need a reference to the Cloud scripting package here as it doesnt exist in nuget.org, but Im not sure what to add specifically. Is this whats causing the error, and what should I add to resolve this if thats the case?
Thanks
1 Reply
- jspivey_msft
Microsoft
Try adding a line to that nuget.config as follows:
...
<packageSource key="CloudScripting">
<package pattern="Microsoft.Mesh.CloudScripting" />
<package pattern="Microsoft.Mesh.CloudScripting.*" />
</packageSource>
...