Skip to content

Commit 4742b1b

Browse files
committed
Update FlowSynx.PluginCore and adapt related changes to have PluginCategoryId
#10
1 parent 275f1ba commit 4742b1b

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

src/AzureBlobPlugin.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public PluginMetadata Metadata
2121
Id = Guid.Parse("7f21ba04-ea2a-4c78-a2f9-051fa05391c8"),
2222
Name = "Azure.Blobs",
2323
CompanyName = "FlowSynx",
24-
Description = Resources.ConnectorDescription,
24+
Description = Resources.PluginDescription,
2525
Version = new PluginVersion(1, 0, 0),
2626
Namespace = PluginNamespace.Connectors,
2727
Authors = new List<string> { "FlowSynx" },
@@ -30,7 +30,8 @@ public PluginMetadata Metadata
3030
ReadMe = "README.md",
3131
RepositoryUrl = "https://github.com/flowsynx/plugin-azure-blobs",
3232
ProjectUrl = "https://flowsynx.io",
33-
Tags = new List<string>() { "FlowSynx", "Azure", "Blobs", "Cloud" }
33+
Tags = new List<string>() { "FlowSynx", "Azure", "Blobs", "Cloud" },
34+
Category = PluginCategories.CloudPlatform
3435
};
3536
}
3637
}

src/FlowSynx.Plugins.Azure.Blobs.csproj

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

1414
<ItemGroup>
1515
<PackageReference Include="Azure.Storage.Blobs" Version="12.24.0" />
16-
<PackageReference Include="FlowSynx.PluginCore" Version="1.2.5" />
16+
<PackageReference Include="FlowSynx.PluginCore" Version="1.2.7" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

src/Resources.Designer.cs

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Resources.resx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@
123123
<data name="BlobItemNotFound" xml:space="preserve">
124124
<value>Blob item '{0}' not found!</value>
125125
</data>
126-
<data name="ConnectorDescription" xml:space="preserve">
127-
<value>Connector for managing Microsoft Azure Blob storage system.</value>
128-
</data>
129126
<data name="ContainerNotFound" xml:space="preserve">
130127
<value>Container '{0}' not found!</value>
131128
</data>
@@ -153,6 +150,9 @@
153150
<data name="ParentNotFound" xml:space="preserve">
154151
<value>The specified parent path does not exist.</value>
155152
</data>
153+
<data name="PluginDescription" xml:space="preserve">
154+
<value>Integrates with Azure Blob Storage to upload, download, list, and manage blobs in containers. Useful for handling large, unstructured data in workflows.</value>
155+
</data>
156156
<data name="PropertiesShouldHaveValue" xml:space="preserve">
157157
<value>Both AccountKey and AccountName properties in the azure blob specifications must have value.</value>
158158
</data>

0 commit comments

Comments
 (0)