Closed Baudin999 closed 9 months ago
You don't provide the content of your networking.asmdef
but it needs to have reference to assembly named Cysharp.Net.Http.YetAnotherHttpHandler
.
Thank you so much, it works, really don't know what I did wrong, I hade the following asmdef:
{
"name": "Networking",
"references": [
"Cysharp.Net.Http.YetAnotherHttpHandler",
....
]
}
It didn't work then, it works perfectly now. Thank you so much!
Hi, I am trying to add YetAnotherHttpHandler to my asmdef does anyone have a working example?
I went through the installation process and everything worked perfectly, now when I am structuring my project and I have a
Networking.asmdef
folder in which I place my code, the compiler cannot find the namespaceCysharp.Net.Http
anymore. When I move the code file out of my asmdef, everything works again.This is the code:
I was able to reproduce:
Create the following folders: Assets > Scripts > Networking
NetworkingHelpers
with the code aboveEverything should work, compile and feel beautiful.
Now add the file
networking.asmdef
and it breaks.I have tried adding references of the dependencies, but to no avail. Is this a known limitation? Or am I doing something wrong?