Skip to content

Point wiki links to Spark page #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ Avalanche currently powers the Southeast Christian Church app, with other non-pr

## Getting Started

We have a great [Quick Start](https://github.com/secc/Avalanche/wiki/Quick-Start) guide so you can get to playing very quickly.
We have a great [Quick Start](https://github.com/SparkDevNetwork/Avalanche/wiki/Quick-Start) guide so you can get to playing very quickly.

The Southeast Christian Church app source code is hosted here as well. This way you can see any customization we may have made and learn from them.

## Contributing

New features, wiki improvements or bug fixes welcome! Check out the [wiki](https://github.com/secc/Avalanche/wiki)
for more information.
New features, wiki improvements or bug fixes welcome! Check out the [wiki](https://github.com/SparkDevNetwork/Avalanche/wiki)
for more information.

iOS: [![Build status](https://build.appcenter.ms/v0.1/apps/58278ba1-767b-474b-ba5b-228a3629a64e/branches/master/badge)](https://appcenter.ms)

Android: [![Build status](https://build.appcenter.ms/v0.1/apps/710bfd8c-40e7-465e-a2c1-121613563ce8/branches/master/badge)](https://appcenter.ms)

## License

Distributed under the Southeast Christian Church License Agreement. Plugins and other includes under their respective liscences.

[Markdown View](https://github.com/aloisdeniel/MarkdownView) used under MIT license
[Markdown View](https://github.com/aloisdeniel/MarkdownView) used under MIT license
40 changes: 20 additions & 20 deletions Tools/AutoDocumenter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,26 @@ static void Main( string[] args )

public static Dictionary<string, string> typeInformation = new Dictionary<string, string>
{
{ typeof (string).Name, "[string](https://github.com/secc/Avalanche/wiki/String)"},
{ typeof (int).Name, "[int](https://github.com/secc/Avalanche/wiki/Int)"},
{ typeof (ImageSource).Name, "[ImageSource](https://github.com/secc/Avalanche/wiki/ImageSource)"},
{ typeof (bool).Name,"[bool](https://github.com/secc/Avalanche/wiki/Bool)"},
{typeof(Accelerator).Name,"[Accelerator](https://github.com/secc/Avalanche/wiki/Accelerator)"},
{typeof(Binding).Name,"[Binding](https://github.com/secc/Avalanche/wiki/Binding)"},
{typeof(Rectangle).Name, "[Rectangle](https://github.com/secc/Avalanche/wiki/Rectangle)"},
{typeof(Color).Name, "[Color](https://github.com/secc/Avalanche/wiki/Color)"},
{typeof(Constraint).Name, "[Constraint](https://github.com/secc/Avalanche/wiki/Constraint)"},
{typeof(Font).Name, "[Font](https://github.com/secc/Avalanche/wiki/Font)"},
{typeof(GridLength).Name,"[GridLength](https://github.com/secc/Avalanche/wiki/GridLength)"},
{typeof(Keyboard).Name, "[Keyboard](https://github.com/secc/Avalanche/wiki/Keyboard)"},
{typeof(List<string>).Name, "[List of Strings](https://github.com/secc/Avalanche/wiki/String)"},
{typeof(LayoutOptions).Name, "[LayoutOptions](https://github.com/secc/Avalanche/wiki/LayoutOptions)"},
{typeof(Point).Name,"[Point](https://github.com/secc/Avalanche/wiki/Point)"},
{typeof(double).Name, "[double](https://github.com/secc/Avalanche/wiki/Double)"},
{typeof(Thickness).Name, "[Thickness](https://github.com/secc/Avalanche/wiki/Thickness)"},
{typeof(Type).Name,"[Type](https://github.com/secc/Avalanche/wiki/Type)"},
{typeof(Uri).Name,"[Uri](https://github.com/secc/Avalanche/wiki/Uri)"},
{typeof(WebViewSource).Name,"[WebViewSource](https://github.com/secc/Avalanche/wiki/WebViewSource)"},
{ typeof (string).Name, "[string](https://github.com/SparkDevNetwork/Avalanche/wiki/String)"},
{ typeof (int).Name, "[int](https://github.com/SparkDevNetwork/Avalanche/wiki/Int)"},
{ typeof (ImageSource).Name, "[ImageSource](https://github.com/SparkDevNetwork/Avalanche/wiki/ImageSource)"},
{ typeof (bool).Name,"[bool](https://github.com/SparkDevNetwork/Avalanche/wiki/Bool)"},
{typeof(Accelerator).Name,"[Accelerator](https://github.com/SparkDevNetwork/Avalanche/wiki/Accelerator)"},
{typeof(Binding).Name,"[Binding](https://github.com/SparkDevNetwork/Avalanche/wiki/Binding)"},
{typeof(Rectangle).Name, "[Rectangle](https://github.com/SparkDevNetwork/Avalanche/wiki/Rectangle)"},
{typeof(Color).Name, "[Color](https://github.com/SparkDevNetwork/Avalanche/wiki/Color)"},
{typeof(Constraint).Name, "[Constraint](https://github.com/SparkDevNetwork/Avalanche/wiki/Constraint)"},
{typeof(Font).Name, "[Font](https://github.com/SparkDevNetwork/Avalanche/wiki/Font)"},
{typeof(GridLength).Name,"[GridLength](https://github.com/SparkDevNetwork/Avalanche/wiki/GridLength)"},
{typeof(Keyboard).Name, "[Keyboard](https://github.com/SparkDevNetwork/Avalanche/wiki/Keyboard)"},
{typeof(List<string>).Name, "[List of Strings](https://github.com/SparkDevNetwork/Avalanche/wiki/String)"},
{typeof(LayoutOptions).Name, "[LayoutOptions](https://github.com/SparkDevNetwork/Avalanche/wiki/LayoutOptions)"},
{typeof(Point).Name,"[Point](https://github.com/SparkDevNetwork/Avalanche/wiki/Point)"},
{typeof(double).Name, "[double](https://github.com/SparkDevNetwork/Avalanche/wiki/Double)"},
{typeof(Thickness).Name, "[Thickness](https://github.com/SparkDevNetwork/Avalanche/wiki/Thickness)"},
{typeof(Type).Name,"[Type](https://github.com/SparkDevNetwork/Avalanche/wiki/Type)"},
{typeof(Uri).Name,"[Uri](https://github.com/SparkDevNetwork/Avalanche/wiki/Uri)"},
{typeof(WebViewSource).Name,"[WebViewSource](https://github.com/SparkDevNetwork/Avalanche/wiki/WebViewSource)"},
};

private static string GetInformation( Type propertyType )
Expand Down