I have a .NET 3.5 application that I want to install on a client server, and workstations run it directly from a network share. I read a little that it seems that it is not as simple as simply copying the application to a network resource, as I would for a native exe. Unfortunately, it seems that there is no documentation on the correct / best way to do this (via ClickOnce or otherwise).
So how will I use this type of deployment? Am I just copying assemblies? Is there something with ClickOnce that can make my life easier and future updates easier? (Keep in mind, each client will have a different installation point on its local server.)
What I know so far:
Obviously, the .NET platform must be installed on every workstation; I think installing it using Group Policy is the way here.
I also read a little about using a network resource that requires full trust, but then I read that this is not a problem in version 3.5. Does anyone know the final answer here?
source share