Deploying a WinForm App

  • Thread starter Thread starter Ed
  • Start date Start date
E

Ed

Hi,

I have a Windows application (C# 2.0) that I have built, and I was
wondering if anyone could help me.

I am looking for ideas on how to go about making it so that when my
application is installed, it can only be used on the computer it was
installed on. I have no references to any non .NET objects, so right
now I can just copy the application folder from one computer to
another and it runs on both (assuming the .NET runtime is there),
which I dont want.

What is the best way to do this?

Thanks,

Ed
 
Just suggestions:

Maybe have the installer create a registry key your app can check?
Have the installer put a file in a specific location on the hard drive, and
check for that file?
 
Back
Top