mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Update of dependencies.
This commit is contained in:
parent
633b31ec29
commit
e174a9a36b
5 changed files with 9 additions and 8 deletions
|
@ -8,7 +8,7 @@
|
|||
<PackageProjectUrl>https://github.com/greenshot/greenshot</PackageProjectUrl>
|
||||
<PackageLicenseUrl>https://www.gnu.org/licenses/gpl.html</PackageLicenseUrl>
|
||||
<PackageLicenseExpression>GPL</PackageLicenseExpression>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<LangVersion>9</LangVersion>
|
||||
<UseWPF>true</UseWPF>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<RuntimeIdentifiers>win10-x64;win10-x86;win-x64;win-x86</RuntimeIdentifiers>
|
||||
|
@ -56,7 +56,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="!$(MSBuildProjectName.Contains('Tests')) And $(MSBuildProjectName.StartsWith('Greenshot'))">
|
||||
<PackageReference Include="Nerdbank.GitVersioning" Version="3.1.91">
|
||||
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
|
@ -102,7 +102,7 @@
|
|||
</Tokens>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="Exists('$(ProjectDir)$(ProjectName).Credentials.template')">
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MSBuildTasks" Version="1.5.0.235" GeneratePathProperty="true"/>
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Tools.InnoSetup" version="6.0.5" GeneratePathProperty="true" />
|
||||
<PackageReference Include="Tools.InnoSetup" version="6.1.2" GeneratePathProperty="true" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\GreenshotPlugin\GreenshotPlugin.csproj" />
|
||||
<PackageReference Include="Dapplo.Jira" version="0.9.28" />
|
||||
<PackageReference Include="Dapplo.Jira" version="1.1.21" />
|
||||
<PackageReference Include="Dapplo.Jira.SvgWinForms" Version="1.1.21" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -29,8 +29,8 @@ using System.Windows.Forms;
|
|||
using Dapplo.HttpExtensions;
|
||||
using Dapplo.HttpExtensions.Extensions;
|
||||
using Dapplo.Jira;
|
||||
using Dapplo.Jira.Converters;
|
||||
using Dapplo.Jira.Entities;
|
||||
using Dapplo.Jira.SvgWinForms.Converters;
|
||||
using GreenshotPlugin.Core;
|
||||
using GreenshotPlugin.IniFile;
|
||||
|
||||
|
@ -241,7 +241,7 @@ namespace GreenshotJiraPlugin {
|
|||
/// <param name="body">text</param>
|
||||
/// <param name="visibility">the visibility role</param>
|
||||
/// <param name="cancellationToken">CancellationToken</param>
|
||||
public async Task AddCommentAsync(string issueKey, string body, string visibility = null, CancellationToken cancellationToken = default)
|
||||
public async Task AddCommentAsync(string issueKey, string body, Visibility visibility = null, CancellationToken cancellationToken = default)
|
||||
{
|
||||
await CheckCredentialsAsync(cancellationToken);
|
||||
await _jiraClient.Issue.AddCommentAsync(issueKey, body, visibility, cancellationToken).ConfigureAwait(false);
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Dapplo.HttpExtensions.JsonNet" Version="1.0.3" />
|
||||
<PackageReference Include="log4net" version="2.0.8" />
|
||||
<PackageReference Include="log4net" version="2.0.12" />
|
||||
<PackageReference Include="Svg" Version="3.1.1" />
|
||||
<Reference Include="Accessibility" />
|
||||
<Reference Include="CustomMarshalers" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue