Renovate Bot (Automatisiert)
66a92e6838
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [GitInfo](https://clarius.org/GitInfo) ([source](https://github.com/devlooped/GitInfo)) | nuget | minor | `3.3.5` -> `3.5.0` | --- ### Release Notes <details> <summary>devlooped/GitInfo (GitInfo)</summary> ### [`v3.5.0`](https://github.com/devlooped/GitInfo/blob/HEAD/changelog.md#v350-2024-11-02) [Full Changelog](https://github.com/devlooped/GitInfo/compare/v3.3.5...v3.5.0) ✨ Implemented enhancements: - Question: Why we use git log with format to get the Current commit? [#​355](https://github.com/devlooped/GitInfo/issues/355) - SetGitExe doesn't recognize VS Git locations [#​324](https://github.com/devlooped/GitInfo/issues/324) - Projects don't rebuild after committing [#​322](https://github.com/devlooped/GitInfo/issues/322) - New tag without version drop semver to zeros [#​319](https://github.com/devlooped/GitInfo/issues/319) - Add vswhere fallback to locate git provided by VS [#​372](https://github.com/devlooped/GitInfo/pull/372) ([@​kzu](https://github.com/kzu)) - Simplify IsDirty with newer typed constants in ThisAssembly [#​368](https://github.com/devlooped/GitInfo/pull/368) ([@​kzu](https://github.com/kzu)) - Allow opting-out of GitBranch default in CI [#​366](https://github.com/devlooped/GitInfo/pull/366) ([@​kzu](https://github.com/kzu)) - Set default GitBranch from CI env variables [#​365](https://github.com/devlooped/GitInfo/pull/365) ([@​kzu](https://github.com/kzu)) - Using simpler git command to get current commit [#​356](https://github.com/devlooped/GitInfo/pull/356) ([@​kzu](https://github.com/kzu)) 🔨 Other: - Using GitInfo with Ncrunch [#​345](https://github.com/devlooped/GitInfo/issues/345) 🔀 Merged: - Adopt SL v2 via ThisAssembly.Constants and document in readme(s) [#​370](https://github.com/devlooped/GitInfo/pull/370) ([@​kzu](https://github.com/kzu)) - \+Mᐁ includes [#​367](https://github.com/devlooped/GitInfo/pull/367) ([@​devlooped-bot](https://github.com/devlooped-bot)) - \+Mᐁ includes [#​357](https://github.com/devlooped/GitInfo/pull/357) ([@​devlooped-bot](https://github.com/devlooped-bot)) - Clean code [#​352](https://github.com/devlooped/GitInfo/pull/352) ([@​gitfool](https://github.com/gitfool)) - Remove redundant depends on targets [#​346](https://github.com/devlooped/GitInfo/pull/346) ([@​gitfool](https://github.com/gitfool)) - Fix fast up-to-date-check [#​343](https://github.com/devlooped/GitInfo/pull/343) ([@​gitfool](https://github.com/gitfool)) - Disable rogue command echo [#​342](https://github.com/devlooped/GitInfo/pull/342) ([@​gitfool](https://github.com/gitfool)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #7 Co-authored-by: Renovate Bot <renovate-bot@git.cantorgymnasium.de> Co-committed-by: Renovate Bot <renovate-bot@git.cantorgymnasium.de>
52 lines
3.8 KiB
XML
52 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<SelfContained>true</SelfContained>
|
|
<ApplicationIcon>Resources\de.cantorgymnasium.Photomator.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GirCore.Adw-1" Version="0.5.0" />
|
|
<PackageReference Include="GitInfo" Version="3.5.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Message Text="=== Building Photomator $(GitTag)... ===" Importance="high" />
|
|
<RemoveDir Directories="$(PublishDir)" />
|
|
<Message Text="=== Compiling extra resources... ===" Importance="high" />
|
|
<Exec Command="glib-compile-resources --sourcedir ./Resources ./Resources/de.cantorgymnasium.Photomator.gresource.xml --target=$(OutDir)/de.cantorgymnasium.Photomator.gresource" />
|
|
</Target>
|
|
|
|
<Target Name="CopyFiles" AfterTargets="Publish">
|
|
<ItemGroup>
|
|
<SourceFiles Include="$(PublishDir)\**\*.*" />
|
|
</ItemGroup>
|
|
<Move SourceFiles="@(SourceFiles)" DestinationFolder="$(PublishDir)\bin" />
|
|
<Copy SourceFiles="$(OutDir)/de.cantorgymnasium.Photomator.gresource" DestinationFolder="$(PublishDir)\share\de.cantorgymnasium.Photomator" />
|
|
</Target>
|
|
|
|
<Target Name="CopyFilesWindows" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
|
<Message Text="=== Copying Gtk files for win-x64 runtime ... ===" Importance="high"/>
|
|
<ItemGroup>
|
|
|
|
<GtkDlls Include="libgtk-4-1.dll;libadwaita-1-0.dll;libappstream-5.dll;libbrotlicommon.dll;libbrotlidec.dll;libbz2-1.dll;libcairo-2.dll;libcairo-gobject-2.dll;libcairo-script-interpreter-2.dll;libcrypto-3-x64.dll;libcurl-4.dll;libdatrie-1.dll;libdeflate.dll;libepoxy-0.dll;libexpat-1.dll;libffi-8.dll;libfontconfig-1.dll;libfreetype-6.dll;libfribidi-0.dll;libgcc_s_seh-1.dll;libgdk_pixbuf-2.0-0.dll;libgio-2.0-0.dll;libglib-2.0-0.dll;libgmodule-2.0-0.dll;libgobject-2.0-0.dll;libgraphene-1.0-0.dll;libgraphite2.dll;libharfbuzz-0.dll;libharfbuzz-gobject-0.dll;libiconv-2.dll;libidn2-0.dll;libintl-8.dll;libjbig-0.dll;libjpeg-8.dll;libLerc.dll;liblzma-5.dll;liblzo2-2.dll;libnghttp2-14.dll;libnghttp3-9.dll;libpango-1.0-0.dll;libpangocairo-1.0-0.dll;libpangoft2-1.0-0.dll;libpangowin32-1.0-0.dll;libpcre2-8-0.dll;libpixman-1-0.dll;libpng16-16.dll;libpsl-5.dll;librsvg-2-2.dll;libsharpyuv-0.dll;libssh2-1.dll;libssl-3-x64.dll;libstdc++-6.dll;libthai-0.dll;libtiff-6.dll;libunistring-5.dll;libwebp-7.dll;libwinpthread-1.dll;libxml2-2.dll;libxmlb-2.dll;libyaml-0-2.dll;libzstd.dll;zlib1.dll;gdbus.exe"/>
|
|
<Icons Include="C:\msys64\mingw64\share\icons\**\*.*" />
|
|
</ItemGroup>
|
|
<Copy SourceFiles="@(GtkDlls->'C:\msys64\mingw64\bin\%(Filename)%(Extension)')" DestinationFolder="$(PublishDir)\bin" />
|
|
<Copy SourceFiles="C:\msys64\mingw64\lib\gdk-pixbuf-2.0\2.10.0\loaders\libpixbufloader-svg.dll" DestinationFolder="$(PublishDir)\lib\gdk-pixbuf-2.0\2.10.0\loaders" />
|
|
<Copy SourceFiles=".\Resources\loaders.cache" DestinationFolder="$(PublishDir)\lib\gdk-pixbuf-2.0\2.10.0" />
|
|
<Copy SourceFiles="C:\msys64\mingw64\share\glib-2.0\schemas\gschemas.compiled" DestinationFolder="$(PublishDir)\share\glib-2.0\schemas" />
|
|
<Copy SourceFiles="@(Icons)" DestinationFolder="$(PublishDir)\share\icons\%(RecursiveDir)" />
|
|
<Message Text="=== Building Windows installer ... ===" Importance="high"/>
|
|
<Exec Command='"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" Resources\Photomator.iss -DMyAppVersion=$(GitTag)' />
|
|
</Target>
|
|
</Project>
|