Skip to content

Commit

Permalink
Update packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
ww898 committed Jun 15, 2024
1 parent 35452e1 commit 01039f5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
<Company>JetBrains s.r.o.</Company>
<Copyright>Copyright © 2021-$([System.DateTime]::Now.ToString('yyyy')) JetBrains s.r.o.</Copyright>
<Authors>Mikhail Pilin</Authors>
<Version>16.1.1</Version>
<Version>16.1.2</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
<PackageReference Include="HtmlSanitizer" Version="8.0.645" />
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" PrivateAssets="All" />
<PackageReference Include="HtmlSanitizer" Version="8.0.865" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" PrivateAssets="All" />
<PackageReference Include="JetBrains.DownloadPgpVerifier" Version="1.0.0" />
<PackageReference Include="JetBrains.HabitatDetector" Version="1.0.2" />
<PackageReference Include="JetBrains.HabitatDetector" Version="1.4.1" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" Version="7.0.2" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="4.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
<PackageReference Include="WixToolset.Dtf.WindowsInstaller" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="EtwHostService.ico" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ internal sealed class AboutViewModel : INotifyPropertyChanged
public IEnumerable<LicenseItemViewModel> Licenses => new LicenseItemViewModel[]
{
// @formatter:off
new("Hardcodet.NotifyIcon.Wpf" , "1.1.0" , "Code Project Open License 1.02" , new Uri("https://spdx.org/licenses/CPOL-1.02.html")),
new("HtmlSanitizer" , "8.0.645", "MIT License (Michael Ganss and Contributors)", new Uri("https://spdx.org/licenses/MIT.html")),
new("JetBrains.DownloadPgpVerifier" , "1.0.0" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("JetBrains.FormatRipper" , "2.0.1" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("JetBrains.HabitatDetector" , "1.0.2" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("System.Text.Json" , "7.0.2" , "MIT License (Microsoft Corporation)" , new Uri("https://spdx.org/licenses/MIT.html")),
new("WixToolset.Dtf.WindowsInstaller", "4.0.0" , "Microsoft Reciprocal License" , new Uri("https://spdx.org/licenses/MS-RL.html")),
new("Hardcodet.NotifyIcon.Wpf" , "1.1.0" , "Code Project Open License 1.02" , new Uri("https://spdx.org/licenses/CPOL-1.02.html")),
new("HtmlSanitizer" , "8.0.865" , "MIT License (2013-2024 Michael Ganss)" , new Uri("https://spdx.org/licenses/MIT.html")),
new("JetBrains.Annotations" , "2023.3.0", "MIT License (2016-2024 JetBrains s.r.o.)", new Uri("https://spdx.org/licenses/MIT.html")),
new("JetBrains.DownloadPgpVerifier" , "1.0.0" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("JetBrains.FormatRipper" , "2.2.1" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("JetBrains.HabitatDetector" , "1.4.1" , "Apache License 2.0" , new Uri("https://spdx.org/licenses/Apache-2.0.html")),
new("System.Text.Json" , "8.0.3" , "MIT License (Microsoft Corporation)" , new Uri("https://spdx.org/licenses/MIT.html")),
new("WixToolset.Dtf.WindowsInstaller", "5.0.0" , "Microsoft Reciprocal License" , new Uri("https://spdx.org/licenses/MS-RL.html")),
// @formatter:on
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<ColumnDefinition Width="*" SharedSizeGroup="License" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Margin="0,0,5,0" Text="{Binding PackageId}" />
<TextBlock Grid.Column="1" Margin="0,0,5,0" Text="{Binding PackageVersion}" />
<TextBlock Grid.Column="1" Margin="0,0,5,0" Text="{Binding PackageVersion}" HorizontalAlignment="Center" />
<TextBlock Grid.Column="2">
<Hyperlink RequestNavigate="OnRequestNavigate" NavigateUri="{Binding LicenseUri}">
<TextBlock Text="{Binding LicenseName}"></TextBlock>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 01039f5

Please sign in to comment.