Skip to content

Commit

Permalink
added moq and net standard files + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sj-net committed Sep 27, 2024
1 parent e371824 commit 30db8dd
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
gem "jekyll", "~> 4.3.3" # installed by `gem jekyll`
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2

gem "just-the-docs", "0.8.1" # pinned to the current release
gem "just-the-docs", "0.10.0" # pinned to the current release
# gem "just-the-docs" # always download the latest release

gem "jekyll-last-modified-at", "~> 1.3"
gem "jekyll-last-modified-at", "~> 1.3"
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ GEM
jekyll (>= 3.8, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
just-the-docs (0.8.1)
just-the-docs (0.10.0)
jekyll (>= 3.8.5)
jekyll-include-cache
jekyll-seo-tag (>= 2.0)
Expand Down Expand Up @@ -87,7 +87,7 @@ PLATFORMS
DEPENDENCIES
jekyll (~> 4.3.3)
jekyll-last-modified-at (~> 1.3)
just-the-docs (= 0.8.1)
just-the-docs (= 0.10.0)

BUNDLED WITH
2.5.6
19 changes: 18 additions & 1 deletion README.md
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`
7 changes: 7 additions & 0 deletions docs/dotnet_framework/index.md
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
---
24 changes: 24 additions & 0 deletions docs/dotnet_framework/net_standard.md
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

```
7 changes: 7 additions & 0 deletions docs/testing/index.md
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
---
14 changes: 14 additions & 0 deletions docs/testing/moq.md
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

```

0 comments on commit 30db8dd

Please sign in to comment.