-
Notifications
You must be signed in to change notification settings - Fork 158
Merge NetOffive v1.9.8 release to main #463
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
jozefizso
wants to merge
38
commits into
main
Choose a base branch
from
releases/netoffice_v1.9.8
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
34895d5
Update actions in `labels.yml` workflow
jozefizso 322f5f2
Update actions in `tests.yml` workflow
jozefizso 7e7a68b
Update actions in `release.yml` workflow
jozefizso 8014f93
Use .NET 8 SDK to run build
jozefizso 87842a9
Update code singing tools
jozefizso 25dc0f2
Use the `win-x86` platform as the `win7-x86` is no longer supported
jozefizso f4dc235
Use Azure Trusted Signing service to digitally sign NetOffice libraries
jozefizso 46558dc
Use Azure Trusted Signing service to digitally sign NetOffice nuget p…
jozefizso 50b60dd
Explicitly sign NetOffice assemblies which are archived into legacy p…
jozefizso 0cc1573
Extract trusted signing certificate
jozefizso 22addc1
Rewrite nuget packages publishing to individual gated job
jozefizso fefd4d3
Modernize `release` workflow for v1.9.x releases (#443)
jozefizso 4a43cd5
Implement Presentation.AutoSaveOn property in PowerPointApi
kev-is-coding-for-adn b86bece
Use English documentation link
kev-is-coding-for-adn a731860
Add integration test for presentation saved locally and with Auto Sav…
jozefizso 0c2e33a
Add integration test for presentation saved in OneDrive and with Auto…
jozefizso 5f5cac9
Implement Presentation.AutoSaveOn property in PowerPointApi (#444)
jozefizso d952fff
Remove obsolete BuildTools folder
jozefizso 610171a
Fix `.gitignore` patterns to correctly exclude folders (#451)
jozefizso 9178188
Fix bug in `DocumentEvents2` sink implementation of the `ContentContr…
jozefizso de31b5b
Update changelog for v1.9.8 with the fix for `ContentControlBeforeCon…
jozefizso d9d422e
Fix bug in `DocumentEvents2` sink implementation of the `ContentContr…
jozefizso dff14a8
Fix `.gitignore` patterns to correctly exclude folders (#452)
jozefizso cd6392b
Bump NetOffice libraries to v1.9.8
jozefizso 655b1d8
Run `build` workflow on more branches
jozefizso 9ca2482
Update GitHub actions packages
jozefizso 24484fa
Update build workflows (#457)
jozefizso 21ab594
Use `azure/artifact-signing-action` action to sign libraries (#456)
jozefizso 0690ec6
Run builds on Windows Server 2025
jozefizso 1288ac8
Use `azure/artifact-signing-action` action to sign libraries (#458)
jozefizso 9f4d480
Run builds on Windows Server 2025 (#459)
jozefizso 67eafb6
NetOffice v1.9.8 release
jozefizso c96b5ca
Use `BUILD_SIGN_RELEASE` env variable to dynamically configure releas…
jozefizso a15cf65
Improve documentation for publishing signed nuget packages
jozefizso 979d37b
Use `BUILD_SIGN_RELEASE` env variable in `release.yml` workflow (#461)
jozefizso 2e37894
NetOffice v1.9.8 release
jozefizso fc76da2
Fix the certificate download link
jozefizso f746621
Fix the certificate download link (#462)
jozefizso File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
publishjob resolves artifact name from${{ needs.release.outputs.nuget_packages_artifact_name }}, butreleaseis a matrix job (DebugandRelease) and that output is populated fromsteps.build.outputs.nuget_packages_artifact_nameper matrix leg. On tag builds those names can differ (Debug keeps a preview suffix while Release does not), and matrix job outputs expose only one final value, so the downloaded artifact can depend on which leg finishes last; this can publish preview/debug packages for a stable tag. Make the publish path consume only the Release leg’s artifact (or remove Debug from package publishing) so the selected artifact is deterministic.Useful? React with 👍 / 👎.