Skip to content

Commit a79fc47

Browse files
committed
Fix CI
1 parent 5448267 commit a79fc47

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on: [ push, pull_request ]
66
jobs:
77
analyze:
88
name: Analyze
9-
runs-on: windows-2019
9+
runs-on: windows-2025
1010
permissions:
1111
actions: read
1212
contents: read
@@ -36,6 +36,6 @@ jobs:
3636
with:
3737
configuration: Debug
3838
build_options: '/p:UseSharedCompilation=false'
39-
39+
4040
- name: Perform CodeQL Analysis
4141
uses: github/codeql-action/analyze@v3

.github/workflows/dotnet-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010

1111
portable-build:
12-
runs-on: windows-2019
12+
runs-on: windows-2025
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: ./.github/build
@@ -19,7 +19,7 @@ jobs:
1919
artifact: release_artifact_portable
2020

2121
portable-publish:
22-
runs-on: windows-2019
22+
runs-on: windows-2025
2323
needs: portable-build
2424
steps:
2525
- name: Collect artifact
@@ -41,7 +41,7 @@ jobs:
4141
asset_content_type: application/zip
4242

4343
installer:
44-
runs-on: windows-2019
44+
runs-on: windows-2025
4545
steps:
4646
- name: Checkout
4747
uses: actions/checkout@v4

.github/workflows/dotnet-testbuild.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on: [ push, pull_request ]
66

77
jobs:
88
build:
9-
runs-on: windows-2019
9+
runs-on: windows-2025
1010
strategy:
1111
matrix:
1212
flavor: [Installer, Portable]
@@ -19,7 +19,7 @@ jobs:
1919
artifact: ${{ matrix.flavor == 'Portable' && 'PasteIntoFile_debug_portable' || '' }}
2020

2121
installer:
22-
runs-on: windows-2019
22+
runs-on: windows-2025
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v4
@@ -39,10 +39,10 @@ jobs:
3939
candle releaseFiles.wxs
4040
candle PasteIntoFile.wxs
4141
light -b ../${{steps.build.outputs.path}} releaseFiles.wixobj PasteIntoFile.wixobj -ext WixNetFxExtension -out Installer.msi
42-
42+
4343
4444
# test:
45-
# 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
45+
# 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
4646
#
4747
# steps:
4848
# - name: Checkout

PasteIntoFile/PasteIntoFile.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555
<PackageReference Include="PDFsharp" Version="1.50.5147" />
5656
<PackageReference Include="SharpClipboard" Version="3.5.2" />
5757
</ItemGroup>
58+
<ItemGroup>
59+
<ProjectReference Include="..\WebP\WebP.csproj">
60+
<Project>{20e1114b-c211-46e5-a2e0-10a598ff4a44}</Project>
61+
<Name>WebP</Name>
62+
</ProjectReference>
63+
</ItemGroup>
5864
<ItemGroup Condition="'$(Flavor)'=='Portable'">
5965
<PackageReference Include="PortableSettingsProvider" Version="0.2.4" />
6066
</ItemGroup>
@@ -157,12 +163,6 @@
157163
<EmbedInteropTypes>True</EmbedInteropTypes>
158164
</COMReference>
159165
</ItemGroup>
160-
<ItemGroup>
161-
<ProjectReference Include="..\WebP\WebP.csproj">
162-
<Project>{20e1114b-c211-46e5-a2e0-10a598ff4a44}</Project>
163-
<Name>WebP</Name>
164-
</ProjectReference>
165-
</ItemGroup>
166166
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
167167
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
168168
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)