Skip to content

Commit

Permalink
added categories
Browse files Browse the repository at this point in the history
  • Loading branch information
bZverok committed Apr 10, 2024
1 parent a7e8835 commit 4c192b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Apps.Lionbridge/Apps.Lionbridge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>Apps.Lionbridge</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blackbird.Applications.Sdk.Common" Version="2.5.0"/>
<PackageReference Include="Blackbird.Applications.Sdk.Common" Version="2.6.0"/>
<PackageReference Include="Blackbird.Applications.Sdk.Utils" Version="1.0.25"/>
<PackageReference Include="MimeTypes" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
Expand Down
9 changes: 8 additions & 1 deletion Apps.Lionbridge/LionbridgeApplication.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
using Blackbird.Applications.Sdk.Common;
using Blackbird.Applications.Sdk.Common.Metadata;

namespace Apps.Lionbridge;

public class LionbridgeApplication : IApplication
public class LionbridgeApplication : IApplication, ICategoryProvider
{
public IEnumerable<ApplicationCategory> Categories
{
get => [ApplicationCategory.LspPortal];
set { }
}

public string Name
{
get => "Lionbridge";
Expand Down

0 comments on commit 4c192b8

Please sign in to comment.