1

I tried to look at several tutorials online and nothing helped..

I have a chess game that I want to deploy. I want it to seem as a portable chess game.. you click the exe and the chess game runs..

How can you achieve that?

3 Answers 3

2

If you right click on the project in the solution viewer, I get a "publish", select a directory, if you select install from CDrom (eg a file based install), it creates a setup.exe.

Have you tried this?

Long as they have .net installed, I believe this should be sufficient. Its not very elegant and you dont get to configure the setup app.

Sign up to request clarification or add additional context in comments.

2 Comments

It worked.. Is there a way to create a shortcut of the application installed and give it an image?
The icon is done by setting icons in your project for the apps icon at least, shortcuts? the installer really is the most basic and pathetic installer possible. mine auto made an entry in my programs list on my start menu. I think thats as good as it gets.
2

If you have a paid for version of Visual Studio you can use a Visual Studio Installer project to create an MSI. This is not the most flexible method though and I believe it will not be supported in future releases.

I'd recommend learning WIX. It has a steep learning curve but it is very powerful and fully maintained. If you install Votive which comes with it then it makes life a bit easier by adding auto-complete etc. when you edit the files in Visual Studio.

1 Comment

i will keep the application in mind,, is there an easy way to simply click the application and the application to start without visual studio starting ?!?
0

You just need to deploy the copy of the binaries to where ever you need the application.

When you run your application an exe file is created which you can then use outside of visual studio. Look in the properties of your project under the build tab there is an output path, that is where your exe is.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.