Skip to content

Commit 81ed3df

Browse files
authored
Merge pull request #201 from MADE-Apps/feature/docs
Improvements to MADE.NET landing page
2 parents 32f0629 + 9e72132 commit 81ed3df

34 files changed

Lines changed: 2612 additions & 89 deletions

.github/workflows/docs.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ on:
1818

1919
jobs:
2020
generate-docs:
21-
21+
2222
runs-on: windows-latest
2323

2424
steps:
2525
- uses: actions/checkout@v2
26-
26+
2727
- name: Setup .NET Core 3.1
2828
uses: actions/setup-dotnet@v1
2929
with:
@@ -33,17 +33,22 @@ jobs:
3333
uses: actions/setup-dotnet@v1
3434
with:
3535
dotnet-version: 5.0.x
36-
36+
37+
- name: Setup .NET 6.0
38+
uses: actions/setup-dotnet@v1
39+
with:
40+
dotnet-version: 6.0.x
41+
3742
- name: Setup DocFX
3843
uses: crazy-max/ghaction-chocolatey@v1
3944
with:
4045
args: install docfx
41-
46+
4247
- name: DocFX Build
4348
working-directory: docs
4449
run: docfx .\docfx.json
4550
continue-on-error: false
46-
51+
4752
- name: Publish
4853
if: github.event_name == 'push'
4954
uses: peaceiris/actions-gh-pages@v3

docs/articles/available-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: available-packages
3-
title: Available packages | MADE.NET
3+
title: Available packages
44
---
55

66
# Available MADE.NET packages

docs/articles/features/collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-collections
3-
title: Using the Collections package | MADE.NET
3+
title: Using the Collections package
44
---
55

66
# Using the Collections package

docs/articles/features/data-converters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-data-converters
3-
title: Using the Data Converters package | MADE.NET
3+
title: Using the Data Converters package
44
---
55

66
# Using the Data Converters package
@@ -104,4 +104,4 @@ namespace MADE.Data.Converters
104104

105105
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.
106106

107-
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.
107+
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.

docs/articles/features/data-efcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-data-converters
3-
title: Using the Data Converters package | MADE.NET
3+
title: Using the Data Converters package
44
---
55

66
# Using the Data Entity Framework Core package

docs/articles/features/data-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-data-validation
3-
title: Using the Data Validation package | MADE.NET
3+
title: Using the Data Validation package
44
---
55

66
# Using the Data Validation package

docs/articles/features/diagnostics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-diagnostics
3-
title: Using the Diagnostics package | MADE.NET
3+
title: Using the Diagnostics package
44
---
55

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

6464
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.
6565

66-
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.
66+
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.

docs/articles/features/media-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-media-image
3-
title: Using the Media Image package | MADE.NET
3+
title: Using the Media Image package
44
---
55

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

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

43-
<img src="../../images/ImageBehavior.png" alt="Result of using LoadStorageFileThumbnailImageBehavior" />
43+
<img src="../../images/ImageBehavior.png" alt="Result of using LoadStorageFileThumbnailImageBehavior" />

docs/articles/features/networking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-networking
3-
title: Using the Networking package | MADE.NET
3+
title: Using the Networking package
44
---
55

66
# Using the Networking package
@@ -84,4 +84,4 @@ public void UpdateProfileDetails(Profile profile)
8484

8585
`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.
8686

87-
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.
87+
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.

docs/articles/features/runtime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
uid: package-runtime
3-
title: Using the Runtime package | MADE.NET
3+
title: Using the Runtime package
44
---
55

66
# Using the Runtime package
@@ -31,4 +31,4 @@ public void AddOrUpdate<TRequest, TResponse, TErrorResponse>(
3131
}
3232
```
3333

34-
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.
34+
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.

0 commit comments

Comments
 (0)