✅ [SOLVED] MSBuild Task says file does not exist
I've made a custom MSBuild task to zip up the newly created
Like, it just copied the file into the exact location it's complaining about
Here's the relevant snippet of the ZipTask:
And here's the part of my project's
Yes, I'm aware that there's no
Any thoughts?
.dll along with relevant files for release whenever the project is built. For some reason though, it says the newly created .dll does not exist... When the log literally shows its existence in the exact location like two line up:Like, it just copied the file into the exact location it's complaining about
Here's the relevant snippet of the ZipTask:
And here's the part of my project's
.csproj that calls it:Yes, I'm aware that there's no
\ between the $(OutputPath) and $(AssemblyName), the $(OutputPath) property has the \ included, and you can tell in the error message that it's successfully adding a / between the directory and file name.Any thoughts?