Skip to content
Merged
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
15 changes: 10 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ on:

jobs:
generate-docs:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
Expand All @@ -33,17 +33,22 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x


- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Setup DocFX
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install docfx

- name: DocFX Build
working-directory: docs
run: docfx .\docfx.json
continue-on-error: false

- name: Publish
if: github.event_name == 'push'
uses: peaceiris/actions-gh-pages@v3
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/available-packages.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: available-packages
title: Available packages | MADE.NET
title: Available packages
---

# Available MADE.NET packages
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/collections.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-collections
title: Using the Collections package | MADE.NET
title: Using the Collections package
---

# Using the Collections package
Expand Down
4 changes: 2 additions & 2 deletions docs/articles/features/data-converters.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-data-converters
title: Using the Data Converters package | MADE.NET
title: Using the Data Converters package
---

# Using the Data Converters package
Expand Down Expand Up @@ -104,4 +104,4 @@ namespace MADE.Data.Converters

If you want to build a XAML specific value converter, you can also apply the `Windows.UI.Xaml.Data.IValueConverter` to your class and implement the additional methods calling directly into your `Convert` and `ConvertBack` methods.

If there is a common value converter you think is missing from MADE.NET, [raise a tracking item on GitHub](https://github.com/MADE-Apps/MADE.NET/issues/new/choose) and we'll get it implemented.
If there is a common value converter you think is missing from MADE.NET, [raise a tracking item on GitHub](https://github.com/MADE-Apps/MADE.NET/issues/new/choose) and we'll get it implemented.
2 changes: 1 addition & 1 deletion docs/articles/features/data-efcore.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-data-converters
title: Using the Data Converters package | MADE.NET
title: Using the Data Converters package
---

# Using the Data Entity Framework Core package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/data-validation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-data-validation
title: Using the Data Validation package | MADE.NET
title: Using the Data Validation package
---

# Using the Data Validation package
Expand Down
4 changes: 2 additions & 2 deletions docs/articles/features/diagnostics.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-diagnostics
title: Using the Diagnostics package | MADE.NET
title: Using the Diagnostics package
---

# Using the Diagnostics package
Expand Down Expand Up @@ -63,4 +63,4 @@ Logs will be created for each handle of an unhandled exception from one or more

The `AppDiagnostics` helper exposes its own event handler `ExceptionObserved` that can be used in your own application code if you wish to perform additional actions when an exception is logged.

The event argument provided by this handler will include the correlation ID to the event in the log, as well as the exception that was thrown.
The event argument provided by this handler will include the correlation ID to the event in the log, as well as the exception that was thrown.
4 changes: 2 additions & 2 deletions docs/articles/features/media-image.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-media-image
title: Using the Media Image package | MADE.NET
title: Using the Media Image package
---

# Using the Media Image package
Expand Down Expand Up @@ -40,4 +40,4 @@ You can do this in your Windows XAML as shown below.

This could result in a generated UI that looks like this.

<img src="../../images/ImageBehavior.png" alt="Result of using LoadStorageFileThumbnailImageBehavior" />
<img src="../../images/ImageBehavior.png" alt="Result of using LoadStorageFileThumbnailImageBehavior" />
4 changes: 2 additions & 2 deletions docs/articles/features/networking.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-networking
title: Using the Networking package | MADE.NET
title: Using the Networking package
---

# Using the Networking package
Expand Down Expand Up @@ -84,4 +84,4 @@ public void UpdateProfileDetails(Profile profile)

`NetworkRequest` objects have a `Guid` identifier also, so if you need to update a pending request with different data or a change in URL, you can do simply by recalling `NetworkManager.AddOrUpdate` passing in a network request with the same ID.

The `AddOrUpdate` method has overloads for providing a success callback, as well as an error callback. This allows you to make decisions in your code to handle a successful or failed network request.
The `AddOrUpdate` method has overloads for providing a success callback, as well as an error callback. This allows you to make decisions in your code to handle a successful or failed network request.
4 changes: 2 additions & 2 deletions docs/articles/features/runtime.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-runtime
title: Using the Runtime package | MADE.NET
title: Using the Runtime package
---

# Using the Runtime package
Expand Down Expand Up @@ -31,4 +31,4 @@ public void AddOrUpdate<TRequest, TResponse, TErrorResponse>(
}
```

In the above example, an action can be passed from a requesting object for when a network request is a success or errors. By using a `WeakReferenceCallback` instead of keeping a hold on the action reference, the requesting object can be disposed when it is no longer required. This is useful in application development scenarios, for example, a page view-model.
In the above example, an action can be passed from a requesting object for when a network request is a success or errors. By using a `WeakReferenceCallback` instead of keeping a hold on the action reference, the requesting object can be disposed when it is no longer required. This is useful in application development scenarios, for example, a page view-model.
2 changes: 1 addition & 1 deletion docs/articles/features/testing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-testing
title: Using the Testing package | MADE.NET
title: Using the Testing package
---

# Using the Testing package
Expand Down
4 changes: 2 additions & 2 deletions docs/articles/features/threading.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-threading
title: Using the Threading package | MADE.NET
title: Using the Threading package
---

# Using the Threading package
Expand Down Expand Up @@ -84,4 +84,4 @@ public class TimerJob
}
```

As you can see, the MADE implementation performs the same actions, but is much more concise and a lot easier to understand.
As you can see, the MADE implementation performs the same actions, but is much more concise and a lot easier to understand.
2 changes: 1 addition & 1 deletion docs/articles/features/ui-controls-dropdownlist.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui-controls-dropdownlist
title: Using the DropDownList control | MADE.NET
title: Using the DropDownList control
---

# Using the DropDownList control
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/ui-controls-filepicker.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui-controls-filepicker
title: Using the FilePicker control | MADE.NET
title: Using the FilePicker control
---

# Using the FilePicker control
Expand Down
4 changes: 2 additions & 2 deletions docs/articles/features/ui-controls-validator.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui-controls-validator
title: Using the InputValidator control | MADE.NET
title: Using the InputValidator control
---

# Using the InputValidator control
Expand Down Expand Up @@ -112,4 +112,4 @@ The control has many customization properties that are exposed to tailor the exp

The `FeedbackMessageStyle` controls the styling applied to the `TextBlock` that displays the validator messages.

The default user experience styling is shown at the top of this article.
The default user experience styling is shown at the top of this article.
2 changes: 1 addition & 1 deletion docs/articles/features/ui-styling.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui-styling
title: Using the UI Styling package | MADE.NET
title: Using the UI Styling package
---

# Using the UI Styling package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/ui-view-management.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui-view-management
title: Using the UI View Management package | MADE.NET
title: Using the UI View Management package
---

# Using the UI View Management package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/ui.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-ui
title: Using the UI package | MADE.NET
title: Using the UI package
---

# Using the UI package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/web-mvc.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-web-mvc
title: Using the Web MVC package | MADE.NET
title: Using the Web MVC package
---

# Using the Web MVC package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/features/web.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: package-web
title: Using the Web package | MADE.NET
title: Using the Web package
---

# Using the Web package
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/intro.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
uid: made-intro
title: Overview | MADE.NET
title: Overview
---

<img src="../images/ProjectBanner.png" alt="MADE project banner" />
Expand Down
Binary file added docs/images/FilePickerSample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/MultiWindow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/love.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/model.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/network.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/icons/validation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading