Skip to content

Commit

Permalink
Bump build #'s and fix System.Drawing.Common not using .NET 7
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed May 30, 2023
1 parent cb64d27 commit 12f10dd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>NetSparkleUpdater.UI.WinForms.NetFramework</id>
<title>NetSparkleUpdater WinForms .NET Framework UI</title>
<version>2.2.1</version>
<version>2.2.2</version>
<authors>Deadpikle, Dirk Eisenberg</authors>
<owners>Deadpikle</owners>
<license type="file">LICENSE.md</license>
Expand All @@ -19,7 +19,7 @@
<releaseNotes>2.0: See https://github.com/NetSparkleUpdater/NetSparkle for all information and to file issues/pull requests for and ask questions about this project.</releaseNotes>
<dependencies>
<group targetFramework=".NETFramework4.5.2">
<dependency id="NetSparkleUpdater.SparkleUpdater" version="2.2.1" exclude="Build,Analyzers" />
<dependency id="NetSparkleUpdater.SparkleUpdater" version="2.2.2" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net6-windows'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\NetSparkle\NetSparkle.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/NetSparkle.UI.Avalonia/NetSparkle.UI.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net7.0;net6;net5;netcoreapp3.1;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetSparkleUpdater.UI.Avalonia</PackageId>
<Version>2.2.1</Version>
<Version>2.2.2</Version>
<Authors>Deadpikle</Authors>
<Company>Deadpikle</Company>
<Product>NetSparkleUpdater.UI.Avalonia</Product>
Expand Down
6 changes: 3 additions & 3 deletions src/NetSparkle.UI.WPF/NetSparkle.UI.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<PackageProjectUrl>https://github.com/NetSparkleUpdater/NetSparkle</PackageProjectUrl>
<RepositoryUrl>https://github.com/NetSparkleUpdater/NetSparkle.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>2.2.1</AssemblyVersion>
<Version>2.2.1</Version>
<AssemblyVersion>2.2.2</AssemblyVersion>
<Version>2.2.2</Version>
<PackageIcon>software-update-available.png</PackageIcon>
<PackageIconUrl />
<Description>NetSparkleUpdater/NetSparkle app updater framework with built-in WPF .NET Core and .NET Framework UI. NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
Expand Down Expand Up @@ -60,7 +60,7 @@
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.md">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Copyright>Copyright © 2022</Copyright>
<OutputPath>..\bin\$(Configuration)\NetSparkle.UI.WinForms\</OutputPath>
<PackageId>NetSparkleUpdater.UI.WinForms.NetCore</PackageId>
<Version>2.2.1</Version>
<Version>2.2.2</Version>
<Authors>Deadpikle</Authors>
<Company>Deadpikle</Company>
<Description>NetSparkleUpdater/NetSparkle app updater framework with built-in WinForms .NET Core UI. NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
Expand Down Expand Up @@ -91,8 +91,8 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net6-windows'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7-windows'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0"/>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0-windows'">
<PackageReference Include="System.Drawing.Common" Version="7.0.0"/>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
Expand Down
4 changes: 2 additions & 2 deletions src/NetSparkle/NetSparkle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<TargetFrameworks>net7.0;net6;net5;netstandard2.0;netcoreapp3.1;net452</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetSparkleUpdater.SparkleUpdater</PackageId>
<Version>2.2.1</Version>
<PackageVersion>2.2.1</PackageVersion>
<Version>2.2.2</Version>
<PackageVersion>2.2.2</PackageVersion>
<Authors>Deadpikle, Dirk Eisenberg</Authors>
<Description>NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia; if you want a built-in UI, please reference a NetSparkleUpdater.UI package. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
<Copyright>Copyright 2010 - 2022</Copyright>
Expand Down

0 comments on commit 12f10dd

Please sign in to comment.