-
Couldn't load subscription status.
- Fork 43
DotNet 8 Migration #29
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
base: main
Are you sure you want to change the base?
Conversation
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.
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 <[email protected]>
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.