forked from JulioGold/vscode-filewatcher-windows
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ A wrapper of C# `FileSystemWatcher` for Windows, used in [ImageGlass](https://gi | |
This project is based on the *VSCode FileWatcher*: https://github.com/Microsoft/vscode-filewatcher-windows | ||
|
||
![Nuget](https://img.shields.io/nuget/dt/FileWatcherEx?color=%2300a8d6&logo=nuget) | ||
[![Build status](https://ci.appveyor.com/api/projects/status/t20tf9qyta8enhu1?svg=true)](https://ci.appveyor.com/project/d2phap/filewatcherex) | ||
|
||
|
||
## Resource links | ||
|
@@ -19,8 +18,13 @@ This project is based on the *VSCode FileWatcher*: https://github.com/Microsoft/ | |
|
||
## Installation | ||
Run the command | ||
```bat | ||
```bash | ||
# Nuget package | ||
Install-Package FileWatcherEx | ||
|
||
|
||
# or use Github registry | ||
dotnet add PROJECT package FileWatcherEx | ||
``` | ||
|
||
## Usage | ||
|
@@ -59,21 +63,9 @@ void FW_OnRenamed(object sender, FileChangedEvent e) | |
[MIT](LICENSE) | ||
|
||
## Support this project | ||
|
||
<a href="https://github.com/sponsors/d2phap" target="_blank" title="Become a sponsor"> | ||
<img src="https://img.shields.io/badge/[email protected]?maxAge=3600&logo=github" height="30" alt="Become a sponsor"> | ||
</a> | ||
|
||
<a href="https://www.patreon.com/d2phap" target="_blank" title="Become a patron"> | ||
<img src="https://img.shields.io/badge/Patreon-@d2phap%20-e85b46.svg?maxAge=3600&logo=patreon" height="30" alt="Become a patron"> | ||
</a> | ||
|
||
<a href="https://www.paypal.me/d2phap" target="_blank" title="Buy me a beer?"> | ||
<img src="https://img.shields.io/badge/PayPal-Donate%20$10%20-0070ba.svg?maxAge=3600&logo=paypal" height="30" alt="Buy me a beer?"> | ||
</a> | ||
|
||
<a href="https://donorbox.org/imageglass" target="_blank" title="Wire transfer"> | ||
<img src="https://img.shields.io/badge/DonorBox-@imageglass%20-005384.svg?maxAge=3600&logo=donorbox" height="30" alt="Wire transfer"> | ||
</a> | ||
- [GitHub sponsor](https://github.com/sponsors/d2phap) | ||
- [Patreon](https://www.patreon.com/d2phap) | ||
- [PayPal](https://www.paypal.me/d2phap) | ||
- [Wire Transfers](https://donorbox.org/imageglass) | ||
|
||
Thanks for your gratitude and finance help! |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="github" value="https://nuget.pkg.github.com/d2phap/index.json" /> | ||
</packageSources> | ||
<packageSourceCredentials> | ||
<github> | ||
<add key="Username" value="d2phap" /> | ||
<add key="ClearTextPassword" value="YOUR_GITHUB_PAT" /> | ||
</github> | ||
</packageSourceCredentials> | ||
</configuration> |
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,5 @@ | ||
|
||
dotnet nuget push "Source\FileWatcherEx\bin\Release\FileWatcherEx.2.0.0.nupkg" --api-key YOUR_GITHUB_PAT --source "github" | ||
|
||
|
||
PAUSE |