Tags: devlooped/nugetizer
Tags
⬆️ Bump files with dotnet-file sync # devlooped/oss - Enable package pruning in Directory.Build.props devlooped/oss@0ff8b7b - Update create-pull-request action to version 8 devlooped/oss@0662872
Bump Microsoft.Build from 17.13.9 to 17.14.28 --- updated-dependencies: - dependency-name: Microsoft.Build dependency-version: 17.14.28 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Fix markdown link replacement: use raw URLs, preserve tooltips, and h… …andle absolute URLs correctly (#655) * Initial plan * Fix markdown link replacement: use raw URLs, preserve tooltips, and handle absolute URLs correctly Co-authored-by: kzu <169707+kzu@users.noreply.github.com> * Use raw.githubusercontent.com format for GitHub raw content URLs Co-authored-by: kzu <169707+kzu@users.noreply.github.com> * Apply dotnet-format --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kzu <169707+kzu@users.noreply.github.com> Co-authored-by: Daniel Cazzulino <daniel@cazzulino.com>
Trim indent/newlines in text-based package metadata
This allows having newlines in the csproj while still compacting for packing.
The trimming involves:
* Removing blank lines at the beginning and ending of the value
* Determining indenting on the first line and using that to remove subsequent indenting in all following lines.
* Applying markdown rules to remove newlines: meaning only full paragraph separating newlines (blank) will be kept.
* Collapse multiple blank newlines into just one (when separating paragraphs).
This means you can indent nicely in the XML (as VS does by default) while still keeping a clean and compact representation in the package. For example:
```xml
<Description>
Create, edit and run multiple C# top-level programs in the same project,
respecting per-file `#:package` references and `#:property` 😍
</Description>
```
Would become a single line of text.
PreviousNext