简体   繁体   中英

how to make installation package for my framework like .net framework

I have built a framework to develop my window application by C#. Now I want to make an installation for that framework like the installation for .NET framework. Could I do it?

There are several ways to deploy your application on target machines, you can read a summary for them on the MSDN webpage .

If you are talking about your custom .Net framework entirely based upon .Net you need to ensure that your assemblies are installed into GAC (global assembly cache) on every machine, so they can be automatically discovered and bound. You can read about this process here .

On the other side, if this is just a code, you might think of something like NuGet , a packet manager for .Net, as suggested in the comment.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM