forked from Squirrel/Squirrel.Windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructured for single table of contents (docs/readme.md)
Removed numbering on file naming and separated into separate sub-directories for getting-started, using, and contributing.
- Loading branch information
Ken Bailey
committed
Dec 31, 2015
1 parent
4d1a15a
commit 9ccb224
Showing
51 changed files
with
385 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
| [docs](..) / [contributing](.) / building-squirrel.md | ||
|:---| | ||
|
||
# Building Squirrel | ||
|
||
Squirrel.Windows is a fairly typical C# / C++ project, the only special part is making sure to clone submodules via the command shown below. | ||
|
||
For the Impatient: | ||
|
||
```sh | ||
git clone https://github.com/squirrel/squirrel.windows | ||
git submodule update --init --recursive ## THIS IS THE PART YOU PROBABLY FORGOT | ||
.\.NuGet\NuGet.exe restore | ||
msbuild /p:Configuration=Release | ||
``` | ||
|
||
**Tip:** You can compile the Squirrel.Windows solution with Visual Studio version 2013 and above (including community edition). | ||
|
||
--- | ||
| Return: [Table of Contents](../readme.md) | | ||
|----| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
| [docs](..) / [contributing](.) / contributing.md | ||
|:---| | ||
|
||
# Contributing | ||
|
||
Why not give back and help make Squirrel even better? Here is an overview of ways you can become more involved. | ||
|
||
* **Join the Squirrel Slack Room** - email [paul@paulbetts.org](mailto:paul@paulbetts.org) with the email address you'd like to receive an invite. | ||
* **Contribute Documentation** - improve the documentation or provide additional code examples to benefit others. | ||
* **Subscribe to Issues on GitHub** - have some experience using Squirrel? Help answer questions under issues or post a Pull Request fixing a bug. | ||
* **Contribute Code** - have a great feature that you feel is a good fit for Squirrel? Send a Pull Request. | ||
|
||
|
||
## See Also | ||
|
||
* [Building Squirrel](building-squirrel.md) - steps to build squirrel for the impatient. | ||
* [VS Solution Overview](vs-solution-overview.md) - overview of the various projects in the Squirrel.Windows Visual Studio solution. | ||
|
||
--- | ||
| Return: [Table of Contents](../readme.md) | | ||
|----| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
| [docs](..) / [getting-started](.) / 0-overview.md| | ||
|:---| | ||
|
||
# Getting Started Guide | ||
|
||
Getting Started will walk you through the integration of Squirrel.Windows for a basic c# Windows Forms application named MyApp. | ||
|
||
## MyApp | ||
|
||
MyApp simply displays the assembly location and application version on a simple form. | ||
|
||
![](images/1-MyApp.png) | ||
|
||
For simplicity, any unneeded references and files have been removed from the solution. | ||
|
||
![](images/1-MyApp-Solution.png) | ||
|
||
If you wish to follow along, you can [download](Example/MyApp.zip) a zip file of the MyApp solution. | ||
|
||
## Overview | ||
This guide will go over the following steps to demonstrate using Squirrel.Windows to distribute and update MyApp. | ||
|
||
1. [Integrating](1-integrating.md) - integrating Squirrel `UpdateManager` into your application. | ||
1. [Packaging](2-packaging.md) - packaging application files and preparing them for release. | ||
1. [Distributing](3-distributing.md) - providing install and update files for users. | ||
1. [Installing](4-installing.md) - process of initial installation of your application. | ||
1. [Updating](5-updating.md) - process of updating an existing install. | ||
|
||
--- | ||
| Next: [1. Integrating](1-integrating.md)| | ||
|:---| | ||
|
||
|
||
|
Oops, something went wrong.