When I publish my solution locally, everything works nicely, but when I deploy it to my test-server using this build pipeline, all of the sudden, the "users" pane in backoffice won't load.
I figured out that in the file "clientdependency.config", there was this line:
<clientDependency version="581052036"
When I publish locally, the generated package has the same line.
But when I build with my azure pipeline, this i changed to:
<clientDependency version="710481262"
And this is what is breaking my backoffice.
So I wanted to ask, why is this version changed? and can I stop it?
EDIT:
Also, this is not a case of a .config transform going on.
No where in my repository do I have "710481262" listed
Clientdependency config version being changed in build pipeline?
Hi, I have an umbraco 7.15.6 installation running
I have created a very simple azure build pipeline that looks like this:
When I publish my solution locally, everything works nicely, but when I deploy it to my test-server using this build pipeline, all of the sudden, the "users" pane in backoffice won't load.
I figured out that in the file "clientdependency.config", there was this line:
When I publish locally, the generated package has the same line.
But when I build with my azure pipeline, this i changed to:
And this is what is breaking my backoffice.
So I wanted to ask, why is this version changed? and can I stop it?
EDIT:
Also, this is not a case of a .config transform going on. No where in my repository do I have "710481262" listed
is working on a reply...