fix: prevent validation project from being packaged#270
Merged
Conversation
- Set IsPackable to false to prevent the project from being included in NuGet package creation.
|
j-d-ha
enabled auto-merge (squash)
December 22, 2025 00:39
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #270 +/- ##
=======================================
Coverage 88.89% 88.89%
=======================================
Files 132 132
Lines 3270 3270
Branches 324 324
=======================================
Hits 2907 2907
Misses 247 247
Partials 116 116 Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
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.



🚀 Pull Request
📋 Summary
Adds
<IsPackable>false</IsPackable>to the AotCompatibility.TestApp project to prevent it from being packaged for NuGet distribution. This project is used solely for AOT compatibility validation during the build process and should not be published as a package.✅ Checklist
🧪 Related Issues or PRs
N/A - Housekeeping fix to ensure validation project isn't packaged.
💬 Notes for Reviewers
This is a simple one-line change to prevent the AOT compatibility test application from being published as a NuGet package. The project is only used for build-time validation of AOT compatibility and should not be distributed.