Skip to content

Support for ics and webp #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [ push, pull_request ]
jobs:
analyze:
name: Analyze
runs-on: windows-2019
runs-on: windows-2025
permissions:
actions: read
contents: read
Expand Down Expand Up @@ -36,6 +36,6 @@ jobs:
with:
configuration: Debug
build_options: '/p:UseSharedCompilation=false'

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:

portable-build:
runs-on: windows-2019
runs-on: windows-2025
steps:
- uses: actions/checkout@v4
- uses: ./.github/build
Expand All @@ -19,7 +19,7 @@ jobs:
artifact: release_artifact_portable

portable-publish:
runs-on: windows-2019
runs-on: windows-2025
needs: portable-build
steps:
- name: Collect artifact
Expand All @@ -41,7 +41,7 @@ jobs:
asset_content_type: application/zip

installer:
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-testbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: [ push, pull_request ]

jobs:
build:
runs-on: windows-2019
runs-on: windows-2025
strategy:
matrix:
flavor: [Installer, Portable]
Expand All @@ -19,7 +19,7 @@ jobs:
artifact: ${{ matrix.flavor == 'Portable' && 'PasteIntoFile_debug_portable' || '' }}

installer:
runs-on: windows-2019
runs-on: windows-2025
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -39,10 +39,10 @@ jobs:
candle releaseFiles.wxs
candle PasteIntoFile.wxs
light -b ../${{steps.build.outputs.path}} releaseFiles.wixobj PasteIntoFile.wixobj -ext WixNetFxExtension -out Installer.msi


# test:
# runs-on: windows-2019 # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
# runs-on: windows-2025 # For a list of available runner types, refer to https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
#
# steps:
# - name: Checkout
Expand Down
6 changes: 6 additions & 0 deletions PasteIntoFile.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ VisualStudioVersion = 16.0.28729.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PasteIntoFile", "PasteIntoFile\PasteIntoFile.csproj", "{F6F4215C-6CD7-4279-9C4C-C2DA9A823D0C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebP", "WebP\WebP.csproj", "{D0BAB316-8DF0-4955-8B5A-E4909402A906}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -15,6 +17,10 @@ Global
{F6F4215C-6CD7-4279-9C4C-C2DA9A823D0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6F4215C-6CD7-4279-9C4C-C2DA9A823D0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6F4215C-6CD7-4279-9C4C-C2DA9A823D0C}.Release|Any CPU.Build.0 = Release|Any CPU
{D0BAB316-8DF0-4955-8B5A-E4909402A906}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D0BAB316-8DF0-4955-8B5A-E4909402A906}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0BAB316-8DF0-4955-8B5A-E4909402A906}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0BAB316-8DF0-4955-8B5A-E4909402A906}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading