-
-
Notifications
You must be signed in to change notification settings - Fork 12
Bump Skiasharp #146
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
Merged
Bump Skiasharp #146
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
e59e63e
Bump NUnit.Analyzers from 4.9.2 to 4.10.0
dependabot[bot] ffbd862
Bump actions/checkout from 4 to 5
dependabot[bot] 8f941bf
Merge pull request #141 from Codeuctivity/dependabot/github_actions/a…
stesee f3ce483
Bump actions/setup-dotnet from 4 to 5
dependabot[bot] 255e3f1
Bump actions/stale from 9 to 10
dependabot[bot] 9eea263
Merge pull request #143 from Codeuctivity/dependabot/github_actions/a…
stesee efc7178
Merge pull request #142 from Codeuctivity/dependabot/github_actions/a…
stesee 60bcfa2
Merge pull request #144 from Codeuctivity/dependabot/nuget/ImageSharp…
stesee 16e856a
Update project dependencies and add NuGet update scripts for improved…
stesee 8fc534d
Remove pull_request trigger from the .NET workflow
stesee 1aa3e90
Refactor updateNuget.ps1 to use dotnet command directly for package u…
stesee bd1a9b6
Merge pull request #145 from Codeuctivity/UpgradeNugetDependencies
stesee 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # PowerShell script to update NuGet packages in all project files | ||
| # This script finds all .csproj and .fsproj files and updates stable (non-prerelease) packages | ||
|
|
||
| $regex = 'PackageReference Include="([^"]*)" Version="([^"]*)"' | ||
|
|
||
| Get-ChildItem -Path . -Recurse -Include "*.csproj", "*.fsproj" | ForEach-Object { | ||
| $projFile = $_.FullName | ||
| Write-Host "Processing project: $projFile" | ||
| $content = Get-Content $projFile | ||
| foreach ($line in $content) { | ||
| if ($line -match $regex) { | ||
| $packageName = $matches[1] | ||
| $version = $matches[2] | ||
| Write-Host "Found package: $packageName, version: $version" | ||
|
|
||
| # Only update stable versions (not prerelease versions containing -) | ||
| if ($version -notmatch '-') { | ||
| Write-Host "Updating package: $packageName" | ||
| dotnet add "$projFile" package "$packageName" | ||
| } | ||
| } | ||
| } | ||
| } |
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
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.
Removing the pull_request trigger means the CI pipeline will no longer run on pull requests, which reduces code quality assurance. Consider keeping this trigger to maintain automated testing on PRs.