-
Notifications
You must be signed in to change notification settings - Fork 0
Prepare NuGet publication metadata for Generators and Abstractions packages #48
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,11 +4,23 @@ | |||||||||||||||||||
| <LangVersion>default</LangVersion> | ||||||||||||||||||||
| <ImplicitUsings>enable</ImplicitUsings> | ||||||||||||||||||||
| <Nullable>enable</Nullable> | ||||||||||||||||||||
| <GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||||||||||||||||||||
| <Version>0.1.0</Version> | ||||||||||||||||||||
| <Title>Matt Source Generation Helpers Abstractions</Title> | ||||||||||||||||||||
| <Description>Attributes and fluent abstractions used by MattSourceGenHelpers source generators.</Description> | ||||||||||||||||||||
| <Authors>Matt Krzaczek</Authors> | ||||||||||||||||||||
| <PackageProjectUrl>https://github.com/dex3r/MattSourceGenHelpers</PackageProjectUrl> | ||||||||||||||||||||
| <RepositoryUrl>https://github.com/dex3r/MattSourceGenHelpers</RepositoryUrl> | ||||||||||||||||||||
| <PackageReadmeFile>README.md</PackageReadmeFile> | ||||||||||||||||||||
|
Comment on lines
+8
to
+14
|
||||||||||||||||||||
| <Version>0.1.0</Version> | |
| <Title>Matt Source Generation Helpers Abstractions</Title> | |
| <Description>Attributes and fluent abstractions used by MattSourceGenHelpers source generators.</Description> | |
| <Authors>Matt Krzaczek</Authors> | |
| <PackageProjectUrl>https://github.com/dex3r/MattSourceGenHelpers</PackageProjectUrl> | |
| <RepositoryUrl>https://github.com/dex3r/MattSourceGenHelpers</RepositoryUrl> | |
| <PackageReadmeFile>README.md</PackageReadmeFile> | |
| <Title>Matt Source Generation Helpers Abstractions</Title> | |
| <Description>Attributes and fluent abstractions used by MattSourceGenHelpers source generators.</Description> |
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.
GeneratePackageOnBuildis now enabled unconditionally for this library, which meansdotnet build/dotnet testin CI will also run packing and emit.nupkgfiles as a side effect. If the intent is only to produce packages for releases, consider conditioning this on$(Configuration) == Release(or removing it and packing explicitly in a release workflow) to avoid extra work and potential pack-time warnings breaking local/CI builds.