Open
Conversation
There was a problem hiding this comment.
Pull Request Overview
The PR migrates the IWA.NET application from .NET 6 to .NET 8 (8.0.16), including updates to Azure DevOps pipeline templates, package dependencies, and security tooling configurations.
- Upgrades all project files to target .NET 8.0 framework
- Migrates from in-memory database to SQLite for main application
- Updates Azure DevOps pipeline templates with new fcli session parameter syntax and removes deprecated report generation features
Reviewed Changes
Copilot reviewed 30 out of 32 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| InsecureWebApp/InsecureWebApp.csproj | Updates .NET target framework and package references to version 8.0.16 |
| InsecureWebApp/Startup.cs | Switches from in-memory database to SQLite configuration |
| devops-integrations/azure-pipelines/templates/*.yml | Updates fcli commands to use new session parameter syntax and removes deprecated features |
| etc/custom-*-check-policy.yml | Adds custom security policy check configurations for SSC and FoD |
| README.md | Updates documentation to reflect .NET 8 migration and OpenText branding |
Comments suppressed due to low confidence (1)
devops-integrations/azure-pipelines/templates/deploy-to-azure.yml:38
- Missing opening brace in template expression. Should be
${{ parameters.appType }}.
appType: ${ parameters.appType }}
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
devops-integrations/azure-pipelines/templates/ssc-security-gate.yml
Outdated
Show resolved
Hide resolved
…e.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Migrated all projects to use DotNet 8 (8.0.16).
Migrated to SQLite database as in-memory no longer works in DotNet 8.
Updated OpenText text in footer.
Updated README.
Updated ADO Pipelines to use FoD DAST Automated task from marketplace plugin.
Simplified ADO Pipelines Security Gates and included custom fcli policy-check examples.