I'm trying to deploy a project that references a local assembly on my hard drive to azure. The project builds and runs locally, however, When I try to deploy it to azure using the command below
git push int-live master:master
it returns the following error:
Error - Changes committed to the remote repository but deployment to website failed.
going through the logs
error CS0234: The type or namespace name 'some' does not exist in the namespace 'comp.utils'
Considered "some.dll", but it didn't exist.
This leads me to believe that it's not attaching my assembly in the git repo but I don't know how to make this work and as such any help would be appreciated.