Skip to content

Commit f199646

Browse files
committed
Ensure only appropriate projects are packed for NuGet in the workflow
1 parent 77a6325 commit f199646

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
## 0.18.0 - not published yet
22

33
- Added conversion options to `WordprocessingDocument.SaveTo` extension methods
4-
- Minor improvements
4+
- Added ability to append to existing Markdown / plain text when converting DOCX
55
- Code refactor for maintainability and extensibility
6+
- Remove .NET 6 target, now out of support
7+
- Created GitHub Actions workflow for build, test and NuGet publish
8+
- Other improvements
69

710
## 0.17.0 - 2025.12.04
811

samples/Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
<PropertyGroup>
4+
<IsPackable>false</IsPackable>
5+
</PropertyGroup>
6+
</Project>

src/Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<RepositoryUrl>https://github.com/manfromarce/DocSharp</RepositoryUrl>
1111
<PackageProjectUrl>https://github.com/manfromarce/DocSharp</PackageProjectUrl>
1212
<RepositoryType>git</RepositoryType>
13+
<IsPackable>true</IsPackable>
1314
</PropertyGroup>
1415

1516
<ItemGroup>

src/DocSharp.Epub/DocSharp.Epub.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<Title>DocSharp.Epub</Title>
1616
<Description>.NET library for converting documents. The DocSharp.Epub package provides EPUB to DOCX conversion.</Description>
1717
<PackageTags>epub docx convert converter renderer openxml office word epubcore</PackageTags>
18+
<IsPackable>false</IsPackable>
1819
</PropertyGroup>
1920

2021
<ItemGroup>

src/DocSharp.Renderer/DocSharp.Renderer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<Title>DocSharp.Renderer</Title>
1616
<Description>.NET library for converting documents. The DocSharp.Renderer package provides DOCX to PDF / XPS / SVG / images conversion using QuestPDF.</Description>
1717
<PackageTags>docx pdf svg jpg png xps convert converter renderer openxml office word</PackageTags>
18+
<IsPackable>false</IsPackable>
1819
</PropertyGroup>
1920

2021
<ItemGroup>

0 commit comments

Comments
 (0)