File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 </PropertyGroup >
1515
1616 <ItemGroup >
17- <PackageReference Include =" FlowSynx.PluginCore" Version =" 1.2.4 " />
17+ <PackageReference Include =" FlowSynx.PluginCore" Version =" 1.2.7 " />
1818 </ItemGroup >
1919
2020</Project >
Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ public class PluginMetadata
1616 public string ? ReadMe { get ; set ; }
1717 public List < string > Authors { get ; set ; } = new List < string > ( ) ;
1818 public List < string > Tags { get ; set ; } = new List < string > ( ) ;
19+ public required string CategoryId { get ; set ; }
1920}
Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ private static PluginMetadata CreatePluginMetadata(IPlugin plugin)
4949 Copyright = plugin . Metadata . Copyright ,
5050 ReadMe = plugin . Metadata . ReadMe ,
5151 Authors = plugin . Metadata . Authors ?? new ( ) ,
52- Tags = plugin . Metadata . Tags ?? new ( )
52+ Tags = plugin . Metadata . Tags ?? new ( ) ,
53+ CategoryId = plugin . Metadata . Category . Id
5354 } ;
5455 }
5556
You can’t perform that action at this time.
0 commit comments