-
Notifications
You must be signed in to change notification settings - Fork 17
.Net 10 Support #68
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
.Net 10 Support #68
Conversation
jaredpar
left a comment
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.
Thanks for this contribution!
|
|
||
| runs-on: ubuntu-latest | ||
| env: | ||
| NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages |
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.
Why did you need to do this?
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.
because this environment is not defined on build server
Co-authored-by: Jared Parsons <[email protected]>
| using Microsoft.CodeAnalysis; | ||
|
|
||
| namespace Basic.Reference.Assemblies; | ||
| public static partial class Net90 |
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.
I'm assuming that this is wrong?
I'm seeing the following error in a project using both:
error CS0433: The type 'Net90' exists in both 'Basic.Reference.Assemblies.Net100, Version=1.0.0.0, Culture=neutral, PublicKeyToken=00aeae93c2ffe759' and 'Basic.Reference.Assemblies.Net90, Version=1.0.0.0, Culture=neutral, PublicKeyToken=00aeae93c2ffe759'
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.
This pull request introduces support for .NET 10 by adding the corresponding reference assemblies and enhances the CI/CD pipeline with a generator compatible with Linux environments.
Changes Included:
These enhancements allow developers to target .NET 10 in Roslyn-based in-memory compilations using the provided reference assemblies and benefit from an automated, cross-platform CI/CD process.
#67