Skip to content

Commit 2b9c8c2

Browse files
committed
Update FlowSynx.Client to version
#5
1 parent fcfcb3c commit 2b9c8c2

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/FlowSynx.Plugins.Json.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.0" />
10+
<PackageReference Include="FlowSynx.PluginCore" Version="1.3.2" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/JsonPlugin.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,16 @@ internal JsonPlugin(IGuidProvider guidProvider, IReflectionGuard reflectionGuard
2727
Name = "Json",
2828
CompanyName = "FlowSynx",
2929
Description = Resources.PluginDescription,
30-
Version = new PluginVersion(1, 0, 0),
30+
Version = new Version(1, 0, 0),
3131
Category = PluginCategory.Data,
3232
Authors = new List<string> { "FlowSynx" },
3333
Copyright = "© FlowSynx. All rights reserved.",
3434
Icon = "flowsynx.png",
3535
ReadMe = "README.md",
3636
RepositoryUrl = "https://github.com/flowsynx/plugin-json",
3737
ProjectUrl = "https://flowsynx.io",
38-
Tags = new List<string>() { "flowSynx", "json", "data", "data-platform" }
38+
Tags = new List<string>() { "flowSynx", "json", "data", "data-platform" },
39+
MinimumFlowSynxVersion = new Version(1, 1, 1),
3940
};
4041

4142
public PluginSpecifications? Specifications { get; set; }

src/Models/JsonPluginSpecifications.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace FlowSynx.Plugins.Json.Models;
44

5-
internal class JsonPluginSpecifications: PluginSpecifications
5+
public class JsonPluginSpecifications: PluginSpecifications
66
{
77

88
}

0 commit comments

Comments
 (0)