Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Merge pull request #21 from jellyfin/xml-dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero authored Jan 1, 2021
2 parents 7001c6c + 897bc44 commit 9f1de43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Pushbullet/Configuration/PluginConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ public class PluginConfiguration : BasePluginConfiguration
public const string Url = "https://api.pushbullet.com/v2/pushes";

/// <summary>
/// Get configured options.
/// Gets or sets the configured options.
/// </summary>
/// <returns><see cref="IEnumerable{PushbulletOptions}"/>.</returns>
public IReadOnlyList<PushbulletOptions> Options { get; set; } = Array.Empty<PushbulletOptions>();
public PushbulletOptions[] Options { get; set; } = Array.Empty<PushbulletOptions>();
}
}
6 changes: 3 additions & 3 deletions Pushbullet/Pushbullet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<FileVersion>7.0.0.0</FileVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -16,7 +16,7 @@

<!-- Code Analyzers-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.1" PrivateAssets="All" />
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "Pushbullet"
guid: "de228f12-e43e-4bd9-9fc0-2830819c3b92"
version: "6.0.0.0"
version: "7.0.0.0"
targetAbi: "10.7.0.0"
framework: "net5.0"
overview: "Pushbullet notification plugin"
Expand Down

0 comments on commit 9f1de43

Please sign in to comment.