Skip to content

Commit 83da2d4

Browse files
committed
clean markdown
1 parent 942a7e2 commit 83da2d4

7 files changed

Lines changed: 254 additions & 153 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This installs **Paket 10** and **Fantomas 7**.
1818

1919
Paket manages all NuGet dependencies. After `dotnet tool restore`, run:
2020

21-
```
21+
```bash
2222
dotnet paket install # re-resolves + updates paket.lock (after editing paket.dependencies)
2323
dotnet paket restore # fast restore from existing paket.lock (normal dev workflow)
2424
```
@@ -27,7 +27,7 @@ The paket.lock is committed and should be kept up-to-date. Do not edit `packages
2727

2828
## Building
2929

30-
```
30+
```bash
3131
# Build the main library + design-time assembly
3232
dotnet build SqlClient.sln -c Release
3333

@@ -40,7 +40,7 @@ dotnet build Tests.sln -c Release
4040

4141
The FAKE-based build script in `build/` orchestrates everything in order:
4242

43-
```
43+
```bash
4444
cd build
4545
dotnet run # runs all: Clean → CheckFormat → AssemblyInfo → Build → …
4646
dotnet run -- Build # run a single target
@@ -50,7 +50,7 @@ dotnet run -- Build # run a single target
5050

5151
All F# source in `src/`, `tests/`, and `build/` is formatted with Fantomas.
5252

53-
```
53+
```bash
5454
# Format in-place
5555
dotnet fantomas src tests build
5656

@@ -66,7 +66,7 @@ Formatting configuration is in [.fantomasrc](.fantomasrc); editor settings in [.
6666

6767
Tests require a live SQL Server with AdventureWorks2012. The connection string is read from `tests/SqlClient.Tests/app.config` (key `AdventureWorks`) or the environment variable `GITHUB_ACTION_SQL_SERVER_CONNECTION_STRING`.
6868

69-
```
69+
```bash
7070
dotnet test tests/SqlClient.Tests/SqlClient.Tests.fsproj -f net9.0
7171
dotnet test tests/SqlClient.DesignTime.Tests/SqlClient.DesignTime.Tests.fsproj -f net9.0
7272
```

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Contribution guidelines
22

3-
Contributions to this repository are welcome, you can engage with users and contributors [on Gitter https://gitter.im/fsprojects/FSharp.Data.SqlClient](https://gitter.im/fsprojects/FSharp.Data.SqlClient) chat room.
3+
Contributions to this repository are welcome, you can engage with users and contributors [on Gitter https://gitter.im/fsprojects/FSharp.Data.SqlClient](https://gitter.im/fsprojects/FSharp.Data.SqlClient) chat room.
44

5-
## Code and documentation contributions:
5+
## Code and documentation contributions
66

77
There is very low bar for submitting a PR for review and discussion, changes to code that will get merged will generally requires a bit of back and forth beyond simplest fixes.
88

@@ -12,4 +12,3 @@ The best way is to pull the repository and build it, then you can use those FAKE
1212

1313
* **GenerateDocs** : Will run FSharp.Formatting over the ./docs/contents folder.
1414
* **ServeDocs** : Will run IIS Express to serve the docs, and then show the home URL with your default browser.
15-

ISSUE_TEMPLATE.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,16 @@ Please provide a description of the behaviour you expect.
1717

1818
### Actual behavior
1919

20-
Please provide a description of the actual behaviour you observe.
20+
Please provide a description of the actual behaviour you observe.
2121

2222
### Known workarounds
2323

2424
Please provide a description of any known workarounds.
2525

26-
### Related information
26+
### Related information
2727

2828
* Operating system
2929
* Branch
3030
* Database versions and sample databases being used
3131
* .NET version
3232
* Editing Tools (e.g. Visual Studio Version)
33-
34-
35-

0 commit comments

Comments
 (0)