Skip to content

Commit 34e874f

Browse files
committed
updated readme
1 parent edca6d0 commit 34e874f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
11
# FileWatcherEx for Windows
2-
A wrapper of `System.IO.FileSystemWatcher` to standardize the events and avoid false change notifications, used in [ImageGlass](https://github.com/d2phap/ImageGlass) project.
2+
A wrapper of `System.IO.FileSystemWatcher` to standardize the events and avoid false change notifications. It has been being used in [ImageGlass - A lightweight, versatile image viewer](https://github.com/d2phap/ImageGlass) project.
33

44
This project is based on the *VSCode FileWatcher*: https://github.com/Microsoft/vscode-filewatcher-windows
55

66
![Nuget](https://img.shields.io/nuget/dt/FileWatcherEx?color=%2300a8d6&logo=nuget)
77

88

99
## Resource links
10+
- Nuget package: [https://www.nuget.org/packages/FileWatcherEx](https://www.nuget.org/packages/FileWatcherEx/)
1011
- Project url: [https://github.com/d2phap/FileWatcherEx](https://github.com/d2phap/FileWatcherEx)
1112
- Website: [https://imageglass.org](https://imageglass.org)
12-
- Nuget package: [https://www.nuget.org/packages/FileWatcherEx](https://www.nuget.org/packages/FileWatcherEx/)
1313

1414
## Features
15-
- Standardize the events of `System.IO.FileSystemWatcher`.
15+
- Standardizes the events of `System.IO.FileSystemWatcher`.
1616
- No false change notifications when a file system item is created, deleted, changed or renamed.
17-
- Support .NET 6.0.
17+
- Supports .NET 6.0, 7.0.
1818

1919
## Installation
20-
Run the command
20+
Run the command:
21+
2122
```bash
2223
# Nuget package
2324
Install-Package FileWatcherEx
24-
25-
26-
# or use Github registry
27-
dotnet add PROJECT package FileWatcherEx
2825
```
2926

3027
## Usage
31-
See Demo project for full details
28+
See Demo project for full details!
3229

3330
```cs
3431
using FileWatcherEx;

Source/FileWatcherEx/FileWatcherEx.csproj

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
<VersionPrefix>2.2.0</VersionPrefix>
1717
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1818
<PackageReleaseNotes>See https://github.com/d2phap/FileWatcherEx/releases</PackageReleaseNotes>
19-
<Authors>$(Authors)</Authors>
19+
<Authors>d2phap</Authors>
20+
<Title>FileWatcherEx - A file system watcher</Title>
21+
<IncludeSymbols>True</IncludeSymbols>
22+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2023
</PropertyGroup>
2124

2225
<ItemGroup>

0 commit comments

Comments
 (0)