发布窗体中必须包含哪些文件?

Paw*_*ski 5 .net c# visual-studio winforms

我有文件在... bin/release我的Windows窗体应用程序,我也使用了EEPlus库.我需要将哪些文件发送给客户端以使应用程序正常工作?

My files:
name.exe         
name.exe.config     
name.pdb
name.vshost.exe
name.vshost.exe.config
name.vshost.exe.manifest
EEPlus.dll
EEPlus.xml
Run Code Online (Sandbox Code Playgroud)

我知道前两个是强制性的,但其余部分呢?提前致谢

Ham*_*jam 4

name.exe                       //necessary, it is your main executable  
name.exe.config                //necessary, it is your application config file
name.pdb                       //not necessary, it contains code and debug symbols configuration of your assembly, but let it be there, it is useful when users encounter a bug or crash
name.vshost.exe                //not necessary, it is the hosting process of visual studio for debugging purposes
name.vshost.exe.config         //not necessary, config file of name.vshost.exe
name.vshost.exe.manifest       //not necessary, manifest of name.vshost.exe
EEPlus.dll                     //necessary, it is one of your application dependencies
EEPlus.xml                     //not necessary, contains some information for EEPlus.dll
Run Code Online (Sandbox Code Playgroud)

xml 参考vshost 参考pdb 参考


归档时间:

查看次数:

1223 次

最近记录:

7 年,7 月 前