-
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.
added moq and net standard files + readme
- Loading branch information
Showing
7 changed files
with
74 additions
and
5 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 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 |
---|---|---|
@@ -1 +1,18 @@ | ||
Run Locally - jekyll serve -l | ||
## A simple blog that uses Just The Docs | ||
|
||
Development | ||
|
||
- Clean installed files `bundle clean --force` | ||
- Install gem files based on gemfile.lock `bundle install` | ||
- Run `jekyll serve -l` | ||
|
||
Build (not required when using github actions) | ||
|
||
- Clean `jekyll clean` | ||
- Build `jekyll build` | ||
|
||
Notes(For all) | ||
Use github actions for deploying the site. | ||
|
||
Notes(For my self) | ||
`git push -u --force origin main` |
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,7 @@ | ||
--- | ||
title: .Net Framework | ||
parent: My Docs | ||
has_children: true | ||
layout: default | ||
published: true | ||
--- |
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,24 @@ | ||
--- | ||
title: MOQ | ||
parent: .Net Framework | ||
layout: default | ||
published: true | ||
grand_parent: My Docs | ||
--- | ||
|
||
### How to add HealthChecks to .Net Framework | ||
--- | ||
|
||
``` csharp | ||
using Microsoft. | ||
public static class HealthCheckExtensions | ||
{ | ||
public static HealthCheckService | ||
} | ||
``` | ||
|
||
### A sample health check | ||
|
||
```csharp | ||
|
||
``` |
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,7 @@ | ||
--- | ||
title: Testing | ||
parent: My Docs | ||
has_children: true | ||
layout: default | ||
published: true | ||
--- |
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,14 @@ | ||
--- | ||
title: MOQ | ||
parent: Testing | ||
layout: default | ||
published: true | ||
grand_parent: My Docs | ||
--- | ||
|
||
### How to MOQ a HTTPContext in MVC/API for .Net Framework | ||
--- | ||
|
||
```csharp | ||
|
||
``` |