0

Can anyone help to deploy Biztalk application on Biztalk server 2016 manually. My code has one .csproj and one .btproj file. Application was already deployed via Visual studio 2015 by installing Visual studio 2015 on Biztalk server and deploying it from visual studio (working fine).

But now we can't use VS 2015 on server, so i have installed Biztalk server 2016 and Visual studio 2015 on our developer machine. whenever i build my solution dll is created. i want to deploy that dll on server manually by pasting that dll in resources path in Biztalk server configured for application, but dll changes are not reflecting (it seems target location is not getting refreshed)

how i could deploy my dll manually without installer(.msi)?

Apart from above approach i have also created one installer using .vdproj project, but again that installer is just pasting dll on requested path, so i am trying to deploy manually. i tried to paste my dll on resource path but dll changes not reflecting on application.

I am expecting to deploy my updates for biztalk application with minimum efforts.

James Z
  • 12,209
  • 10
  • 24
  • 44
  • Does this answer your question? [Update resource in BizTalk](https://stackoverflow.com/questions/54825715/update-resource-in-biztalk) – Dijkgraaf Aug 09 '23 at 22:29
  • At the very minimum you need to import the DLL via the BizTalk Admin console and GAC it. But as per my two answers on the topic, I would not recommend this for Production deployments. – Dijkgraaf Aug 10 '23 at 01:05
  • Please provide enough code so others can better understand or reproduce the problem. – Community Aug 10 '23 at 06:00
  • And why can't you use Visual Studio 2015? That is the only supported version to develop and deploy BizTalk 2016 solutions. Also have you looked at using BTDF? – Dijkgraaf Aug 10 '23 at 09:13

1 Answers1

1

From the admin console go to the application, resources and right click and add resource, make sure you select GAC on Add, and click Add.

Note that this is not the recommended procedure for Production as outlined in

.

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54