-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Bump the all group with 4 updates
Bumps the all group with 4 updates: [H.Resources.Generator](https://github.com/HavenDV/H.Resources.Generator), [MinVer](https://github.com/adamralph/minver), [EventGenerator.Generator](https://github.com/HavenDV/EventGenerator) and [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest). Updates `H.Resources.Generator` from 1.6.0 to 1.6.1 - [Release notes](https://github.com/HavenDV/H.Resources.Generator/releases) - [Commits](https://github.com/HavenDV/H.Resources.Generator/commits) Updates `MinVer` from 5.0.0 to 6.0.0 - [Changelog](https://github.com/adamralph/minver/blob/main/CHANGELOG.md) - [Commits](adamralph/minver@5.0.0...6.0.0) Updates `EventGenerator.Generator` from 0.13.0 to 0.13.1 - [Commits](https://github.com/HavenDV/EventGenerator/commits) Updates `Microsoft.NET.Test.Sdk` from 17.11.0 to 17.11.1 - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](microsoft/vstest@v17.11.0...v17.11.1) --- updated-dependencies: - dependency-name: H.Resources.Generator dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: MinVer dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: EventGenerator.Generator dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
- Loading branch information
1 parent
ef73e4c
commit bdab42e
Showing
5 changed files
with
248 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,87 @@ | ||
<Project> | ||
|
||
<Import Project="..\Directory.Build.props" /> | ||
|
||
<PropertyGroup Label="GraphicsLibrary"> | ||
<!-- Supported values: System.Drawing, SkiaSharp --> | ||
<GraphicsLibrary>System.Drawing</GraphicsLibrary> | ||
<DefineConstants Condition="'$(GraphicsLibrary)' == 'System.Drawing'">$(DefineConstants);HAS_SYSTEM_DRAWING</DefineConstants> | ||
<DefineConstants Condition="'$(GraphicsLibrary)' == 'SkiaSharp'">$(DefineConstants);HAS_SKIA_SHARP</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Signing"> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)../key.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="CLSCompliant"> | ||
<AssemblyAttribute Include="System.CLSCompliantAttribute"> | ||
<_Parameter1>true</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="Nuget"> | ||
<PackageReleaseNotes>$(PACKAGE_RELEASE_NOTES)</PackageReleaseNotes> | ||
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>havendv</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>nuget_icon.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageProjectUrl>https://github.com/HavenDV/H.NotifyIcon</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Nuget"> | ||
<None Include="$(MSBuildThisFileDirectory)../../assets/nuget_icon.png" Pack="true" PackagePath="\" Visible="false" /> | ||
<None Include="$(MSBuildThisFileDirectory)../../README.md" Pack="true" PackagePath="\" Visible="false" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="Versioning"> | ||
<MinVerTagPrefix>v</MinVerTagPrefix> | ||
<MinVerDefaultPreReleaseIdentifiers>dev</MinVerDefaultPreReleaseIdentifiers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Versioning"> | ||
<PackageReference Include="MinVer" Version="5.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Source Link"> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="PolySharp"> | ||
<PackageReference Include="PolySharp" Version="1.14.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<Using Include="System.Runtime.Versioning" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="PolySharp"> | ||
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Analyzers"> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>All</AnalysisMode> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<!-- <CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>--> | ||
<NoWarn>$(NoWarn);CA1502;CA1506;CA1010;CA1822</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Trimmable" Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"> | ||
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible> | ||
<EnableTrimAnalyzer>true</EnableTrimAnalyzer> | ||
<IsTrimmable>true</IsTrimmable> | ||
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings> | ||
<TrimmerSingleWarn>false</TrimmerSingleWarn> | ||
</PropertyGroup> | ||
|
||
</Project> | ||
<Project> | ||
|
||
<Import Project="..\Directory.Build.props" /> | ||
|
||
<PropertyGroup Label="GraphicsLibrary"> | ||
<!-- Supported values: System.Drawing, SkiaSharp --> | ||
<GraphicsLibrary>System.Drawing</GraphicsLibrary> | ||
<DefineConstants Condition="'$(GraphicsLibrary)' == 'System.Drawing'">$(DefineConstants);HAS_SYSTEM_DRAWING</DefineConstants> | ||
<DefineConstants Condition="'$(GraphicsLibrary)' == 'SkiaSharp'">$(DefineConstants);HAS_SKIA_SHARP</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Signing"> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)../key.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="CLSCompliant"> | ||
<AssemblyAttribute Include="System.CLSCompliantAttribute"> | ||
<_Parameter1>true</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="Nuget"> | ||
<PackageReleaseNotes>$(PACKAGE_RELEASE_NOTES)</PackageReleaseNotes> | ||
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<Authors>havendv</Authors> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>nuget_icon.png</PackageIcon> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageProjectUrl>https://github.com/HavenDV/H.NotifyIcon</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Nuget"> | ||
<None Include="$(MSBuildThisFileDirectory)../../assets/nuget_icon.png" Pack="true" PackagePath="\" Visible="false" /> | ||
<None Include="$(MSBuildThisFileDirectory)../../README.md" Pack="true" PackagePath="\" Visible="false" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="Versioning"> | ||
<MinVerTagPrefix>v</MinVerTagPrefix> | ||
<MinVerDefaultPreReleaseIdentifiers>dev</MinVerDefaultPreReleaseIdentifiers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Versioning"> | ||
<PackageReference Include="MinVer" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Source Link"> | ||
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="PolySharp"> | ||
<PackageReference Include="PolySharp" Version="1.14.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<Using Include="System.Runtime.Versioning" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="PolySharp"> | ||
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Analyzers"> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<AnalysisMode>All</AnalysisMode> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<!-- <CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>--> | ||
<NoWarn>$(NoWarn);CA1502;CA1506;CA1010;CA1822</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Trimmable" Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"> | ||
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible> | ||
<EnableTrimAnalyzer>true</EnableTrimAnalyzer> | ||
<IsTrimmable>true</IsTrimmable> | ||
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings> | ||
<TrimmerSingleWarn>false</TrimmerSingleWarn> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,67 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net4.6.2;net6.0-windows;net8.0-windows</TargetFrameworks> | ||
<UseWPF>true</UseWPF> | ||
<DefineConstants>$(DefineConstants);HAS_WPF;HAS_PLATFORM_CODE</DefineConstants> | ||
<RootNamespace>Hardcodet.Wpf.TaskbarNotification</RootNamespace> | ||
<NoWarn>$(NoWarn);WPF0005;WPF0041;CA1030;CA1031;CA1513;CA1510</NoWarn> | ||
<Nullable>enable</Nullable> | ||
<EnableWindowsTargeting>true</EnableWindowsTargeting> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Using Remove="System.Net.Http" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="AssemblyInfo"> | ||
<AssemblyAttribute Include="System.Windows.ThemeInfo"> | ||
<_Parameter1>System.Windows.ResourceDictionaryLocation.None</_Parameter1> | ||
<_Parameter1_IsLiteral>true</_Parameter1_IsLiteral> | ||
<_Parameter2>System.Windows.ResourceDictionaryLocation.SourceAssembly</_Parameter2> | ||
<_Parameter2_IsLiteral>true</_Parameter2_IsLiteral> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.Markup.XmlnsPrefix"> | ||
<_Parameter1>http://www.hardcodet.net/taskbar</_Parameter1> | ||
<_Parameter2>tb</_Parameter2> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.Markup.XmlnsDefinition"> | ||
<_Parameter1>http://www.hardcodet.net/taskbar</_Parameter1> | ||
<_Parameter2>H.NotifyIcon</_Parameter2> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="NuGet"> | ||
<Description>This is an implementation of a NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform. | ||
It does not just rely on the Windows Forms NotifyIcon component, | ||
but is a purely independent control which leverages several features of the WPF framework in order to display rich tooltips, | ||
popups, context menus, and balloon messages. It can be used directly in code or embedded in any XAML file. | ||
</Description> | ||
<PackageTags>NotifyIcon, WPF, Tray, Notify, ToolTip, Popup, Balloon, Toast</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Nuget"> | ||
<None Include="VisualStudioToolsManifest.xml" Pack="true" PackagePath="tools" Visible="true" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DependencyPropertyGenerator" Version="1.4.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="EventGenerator.Generator" Version="0.13.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="WpfAnalyzers" Version="4.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net4.6.2'" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\H.NotifyIcon\H.NotifyIcon.csproj" /> | ||
</ItemGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net4.6.2;net6.0-windows;net8.0-windows</TargetFrameworks> | ||
<UseWPF>true</UseWPF> | ||
<DefineConstants>$(DefineConstants);HAS_WPF;HAS_PLATFORM_CODE</DefineConstants> | ||
<RootNamespace>Hardcodet.Wpf.TaskbarNotification</RootNamespace> | ||
<NoWarn>$(NoWarn);WPF0005;WPF0041;CA1030;CA1031;CA1513;CA1510</NoWarn> | ||
<Nullable>enable</Nullable> | ||
<EnableWindowsTargeting>true</EnableWindowsTargeting> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Using Remove="System.Net.Http" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="AssemblyInfo"> | ||
<AssemblyAttribute Include="System.Windows.ThemeInfo"> | ||
<_Parameter1>System.Windows.ResourceDictionaryLocation.None</_Parameter1> | ||
<_Parameter1_IsLiteral>true</_Parameter1_IsLiteral> | ||
<_Parameter2>System.Windows.ResourceDictionaryLocation.SourceAssembly</_Parameter2> | ||
<_Parameter2_IsLiteral>true</_Parameter2_IsLiteral> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.Markup.XmlnsPrefix"> | ||
<_Parameter1>http://www.hardcodet.net/taskbar</_Parameter1> | ||
<_Parameter2>tb</_Parameter2> | ||
</AssemblyAttribute> | ||
<AssemblyAttribute Include="System.Windows.Markup.XmlnsDefinition"> | ||
<_Parameter1>http://www.hardcodet.net/taskbar</_Parameter1> | ||
<_Parameter2>H.NotifyIcon</_Parameter2> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="NuGet"> | ||
<Description>This is an implementation of a NotifyIcon (aka system tray icon or taskbar icon) for the WPF platform. | ||
It does not just rely on the Windows Forms NotifyIcon component, | ||
but is a purely independent control which leverages several features of the WPF framework in order to display rich tooltips, | ||
popups, context menus, and balloon messages. It can be used directly in code or embedded in any XAML file. | ||
</Description> | ||
<PackageTags>NotifyIcon, WPF, Tray, Notify, ToolTip, Popup, Balloon, Toast</PackageTags> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Nuget"> | ||
<None Include="VisualStudioToolsManifest.xml" Pack="true" PackagePath="tools" Visible="true" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="DependencyPropertyGenerator" Version="1.4.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="EventGenerator.Generator" Version="0.13.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="WpfAnalyzers" Version="4.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net4.6.2'" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\H.NotifyIcon\H.NotifyIcon.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.