Skip to content

Commit b2f0313

Browse files
committed
Update library assembly version and update README.
1 parent b0375f1 commit b2f0313

2 files changed

Lines changed: 26 additions & 2 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,30 @@ This is a .NET library and CLI utility for reading & managing the hydration and
2626
- This is a command-line interface for `CloudFileStatusManager.Windows`.
2727
- Produces no package.
2828

29+
## Using the CLI
30+
31+
Binaries for the CLI are available to download from the [Releases page](https://github.com/WayneKoorts/CloudFileStatusManager/releases).
32+
33+
```shell
34+
$ ./cfsm.exe --help
35+
Description:
36+
Cloud File Status Manager CLI for Windows
37+
38+
Usage:
39+
cfsm [command] [options]
40+
41+
Options:
42+
--verbose Show verbose output
43+
--version Show version information
44+
-?, -h, --help Show help and usage information
45+
46+
Commands:
47+
get-hydration-status <file> Get the hydration status of a file
48+
get-pin-status <file> Get the pin status of a file
49+
hydrate <file> Hydrate a file
50+
dehydrate <file> Dehydrate a file
51+
```
52+
2953
## Acknowledgements
3054

3155
Thank you to [Hunter Ratliff](https://hratliff.com/), who explained how file attributes in Windows represent the various states of files on cloud drives in [this blog post](https://hratliff.com/posts/icloud-onedrive-syncing-in-cmd/).

src/CloudFileStatusManager/CloudFileStatusManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<PackageProjectUrl>https://github.com/WayneKoorts/CloudFileStatusManager</PackageProjectUrl>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<RepositoryUrl>https://github.com/WayneKoorts/CloudFileStatusManager</RepositoryUrl>
16-
<AssemblyVersion>0.1.0.0</AssemblyVersion>
17-
<FileVersion>0.1.0.0</FileVersion>
16+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
17+
<FileVersion>1.0.0.0</FileVersion>
1818
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
1919
<Version>$(AssemblyVersion)</Version>
2020
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>

0 commit comments

Comments
 (0)