Skip to content

Commit f9fb600

Browse files
committed
Update the readmes
1 parent 4b079ea commit f9fb600

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

uSync.Triggers/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
uSync Triggers adds an endpoint to your site that you can then call
44
without having to login to the umbraco back end.
55

6+
**This version should be compatible with Umbraco 9 and Umbraco 10.**
7+
68
---
79

810
note: you need to enable uSync.Triggers in your appsettings.json before

uSync.Triggers/uSync.Triggers.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626

2727
<PackageLicenceFile>LICENSE</PackageLicenceFile>
2828

29-
<PackageReleaseNotes><![CDATA[9.0 Initial release for uSync 9.2.x]]></PackageReleaseNotes>
29+
<PackageReleaseNotes><![CDATA[9.0 Initial release for uSync 9.2.x
30+
9.1.0 uSync 9/10 version]]></PackageReleaseNotes>
3031
</PropertyGroup>
3132

3233
<ItemGroup>

uSyncTriggerCLI/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Command line tool trigger for remote uSync import/exports
44

5-
This is a dotnet tool that can be used in tandem with the uSync.Triggers project.
5+
This is a dotnet tool that can be used in tandem with the uSync.Triggers project
66

7-
the uSync.Triggers package need to be installed and enabled on an umbraco site for the command line tool to work.
7+
**the uSync.Triggers package need to be installed and enabled on an umbraco site for the command line tool to work.**
88

99
You can trigger actions directy via CURL commands - so technically you don't need this tool, but it makes the syntax
1010
slightly easier to manage, and it pritty prints the output from the tiggers, so you get nicer outputs in your logs.
@@ -15,7 +15,7 @@ slightly easier to manage, and it pritty prints the output from the tiggers, so
1515
dotnet tool install uSyncTriggerCLI
1616
```
1717

18-
you can also install globally with the `--global` switch.
18+
you can also install globally with the `--global` or `-g` switch.
1919

2020
## Running command
2121

uSyncTriggerCLI/uSyncTriggerCLI.csproj

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>uSyncTrigger</AssemblyName>
77
<RootNamespace>uSyncTrigger</RootNamespace>
88

9-
<TargetFramework>net5.0</TargetFramework>
9+
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
1010
<ProductName>uSyncTriggerCLI</ProductName>
1111
<Version>8.9.0</Version>
1212

@@ -31,17 +31,21 @@
3131
<PackageTags>Umbraco uSync</PackageTags>
3232

3333
<PackageLicenseFile>LICENSE</PackageLicenseFile>
34+
<PackageReadmeFile>README.md</PackageReadmeFile>
3435

3536
<RepositoryUrl>https://github.com/KevinJump/uSyncTriggers</RepositoryUrl>
3637

3738
<PackageReleaseNotes>
38-
8.9.0 - Initial release
39+
<![CDATA[8.9.0 - Initial release
40+
9.0.0 - uSync 9.0 release
41+
9.1.0 - uSync 9/10 release]]>
3942
</PackageReleaseNotes>
4043

4144
</PropertyGroup>
4245

4346
<ItemGroup>
4447
<None Include="..\LICENSE" Pack="true" Visible="false" PackagePath="" />
48+
<None Include=".\README.md" Pack="true" PackagePath="" />
4549
</ItemGroup>
4650

4751
<ItemGroup>

0 commit comments

Comments
 (0)