转换为.exe Windows应用程序后的.net [英] .net after converting to .exe windows application

查看:73
本文介绍了转换为.exe Windows应用程序后的.net的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,
我已经使用C#(框架3.5)完成了.net Windows应用程序.它的小型应用程序带有水晶报表,MS sql server2008.我需要将应用程序转换为.exe,然后需要在其他计算机上安装该应用程序.我没有安装.net框架,ms sql和crystal report.支持什么要添加的文件,以便在其他计算机上运行我的应用程序.

Hi frnds,
I have completed my .net windows application using C#(framework 3.5). Its small application with crystal reports,MS sql server 2008.I need to convert my application to .exe and after i need to install that application in some other Computer.I didnt installed .net framework,ms sql and crystal report.What are support files to add for run my application in other computer.

推荐答案

转换为EXE很容易-所谓的构建就是全部,但是您需要选择菜单栏上目前显示"Debug"的"Release".
其他要求比较有问题.
您不一定要将exe文件从一台计算机复制到另一台计算机并期望它能工作-这很有可能不会.最好的办法是在解决方案中创建一个安装和部署项目,这将创建一个安装应用程序,该应用程序将安装必要的组件以运行您的exe.
如果您查看Google,它将帮助您做到这一点: 5)它将破坏使用SqlServer而不是SqlCE或SQLite的主要优势-多用户访问.如果每个人都安装了自己的SQL Server副本,那么您将拥有数据库的多个副本,每个副本都由一个人使用.这会引起一些混乱,并且(取决于您编写原始数据库的方式)可能会花费一些精力才能在遇到问题时将其合并到单个实例中.
Converting to EXE is easy - it''s called a build is all, but you need to select "Release" on the menu bar where it says "Debug" at present.
The other requirements are more problematic.
You can''t necessarily just copy you exe file from one machine to another and expect it to work - there is a good chance it won''t. The best thing to do is to create a Setup and Deployment project as part of your Solution, and that will create a setup application which will install the necessary components to run your exe.
If you have a look at Google it will help you to do that: Setup and Deployment project with crystal reports[^]

SQL server is another problem altogether! You should not include SQL Server in your installation. There are a couple of reasons:
0) You can only distribute SQL Server Express for copyright reasons - not SQL Server full version.
1) They may already have SQL Server installed on the network. If so, then they will presumably want to use that version.
2) If they do have SQL server installed and you start proliferating SQL server Express instances, you are going to annoy the heck out of the database administrator...
3) A single site installation of SQl Server is a lot more likely to be backed up than a number of scattered version under user control.
4) Sql server is quite complex for a "normal" user to install and administer - it is not a good idea!
5) It will destroy the primary advantage of using Sql Server over SqlCE or SQLite - multiuser access. If everyone installs their own copy of SQL server, then you will have multiple copies of your database, each used by a single person. This will cause some confusion, and (depending on how you wrote the original database) may take some considerable effort to combine into a single instance when the problem is realized.


这篇关于转换为.exe Windows应用程序后的.net的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆