Skip to content

Commit 42e2ff0

Browse files
authored
Merge pull request #14 from Dissimilis/codex/find-and-improve-quality-of-life
Improve docs and fix typos
2 parents 7dde169 + 0c05e45 commit 42e2ff0

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,12 @@ using (var file = File.Open("path_to_file", FileMode.Create))
5252
writer.Write(file);
5353
}
5454
```
55+
56+
## Building and testing
57+
58+
The solution targets .NET 8.0. With the [.NET SDK](https://dotnet.microsoft.com/download) installed you can build and run all tests:
59+
60+
```bash
61+
dotnet build
62+
dotnet test
63+
```

src/BookmarksManager/BookmarksManager.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<PackageProjectUrl>https://github.com/Dissimilis/BookmarksManager</PackageProjectUrl>
1111
<Description>Library for handling browsers bookmarks (supports Netscape bookmarks format)</Description>
1212
<PackageTags>netscape;bookmarks;bookmark;favorites</PackageTags>
13-
<PackageReleaseNotes>Ported to netstandard1.6;
14-
Minor bugfixes;
15-
Braking change: NetscapeBookmarksWritter renamed to NetscapeBookmarksWriter; </PackageReleaseNotes>
13+
<PackageReleaseNotes>Ported to netstandard1.6;
14+
Minor bugfixes;
15+
Breaking change: NetscapeBookmarksWritter renamed to NetscapeBookmarksWriter; </PackageReleaseNotes>
1616
<RepositoryUrl>https://github.com/Dissimilis/BookmarksManager</RepositoryUrl>
1717
<RepositoryType>git</RepositoryType>
1818
<RepositoryBranch>master</RepositoryBranch>

src/BookmarksManager/BookmarksWritterBase.cs renamed to src/BookmarksManager/BookmarksWriterBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ protected BookmarksWriterBase(T bookmarksContainer)
1616
}
1717

1818
/// <summary>
19-
/// Writes bookmarks to provided TextWritter. BookmarksWriter output encoding is not used in this method, you must
20-
/// create TextWriter with correct encoding
19+
/// Writes bookmarks to provided TextWriter. BookmarksWriter output encoding is not used in this method, you must
20+
/// create <see cref="TextWriter"/> with correct encoding
2121
/// </summary>
2222
protected abstract void Write(TextWriter outputTextWriter);
2323

src/BookmarksManager/NetscapeFormat/NetscapeBookmarksWritter.cs renamed to src/BookmarksManager/NetscapeFormat/NetscapeBookmarksWriter.cs

File renamed without changes.

0 commit comments

Comments
 (0)