Skip to content

Commit

Permalink
Created NuGet package for version 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
egonl committed Feb 22, 2019
1 parent 8d734c5 commit 4629d52
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
7 changes: 2 additions & 5 deletions SharpDocx/TODO.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
Todo:
-Implement ImageHelper.CreateDrawing for .NET Standard.

Consider:
Consider:
-Reuse image parts where possible.
-Support C# 6.
-Use a proper C# parser, so there are no potential issues with e.g. brackets in strings/comments/etc.
-Use a proper C# parser, so there are no potential issues with e.g. brackets in strings/comments/etc. Maybe use Roslyn for this?
-Support code blocks in DocumentFormat.OpenXml.Vml.TextPath.String.
-Implement a better CreateHyperlink method, because the one in the Inheritance sample doesn't always insert the link at the right place.
-Insert merge fields.
Expand Down
22 changes: 14 additions & 8 deletions SharpDocx/nupkg/SharpDocx.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@
<package >
<metadata>
<id>SharpDocx</id>
<version>1.1.0</version>
<version>1.2.0</version>
<authors>egonl</authors>
<owners>egonl</owners>
<licenseUrl>https://github.com/egonl/SharpDocx/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/egonl/SharpDocx</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Create simple and complex Word documents with ease</summary>
<description>Framework for creating Word documents
- Use C# code inside Word documents.
- Use C# code inside Word documents for inserting text, images or tables.
- Supports the MVC pattern, where the view is a Word document.
- Create simple and complex documents with ease.
- High performance.
- Supports .NET Framework 3.5/4.5 and .NET Standard 2.0.
- Based on Microsoft's Open XML SDK.
- Source code, tutorial and sample code on GitHub.</description>
<releaseNotes>Version 1.1.0
<releaseNotes>Version 1.2.0 - February 22, 2019
- Added support for .NET Standard 2.0.

Version 1.1.0 - January 4, 2018
- Some performance improvements.
- You can now specify a view model when calling Document.Generate.
- Tidied up API.
Expand All @@ -25,11 +28,14 @@ Version 1.0.0 - January 1, 2018
<copyright>Copyright 2018</copyright>
<tags>openxml office word document sharpdocx</tags>
<dependencies>
<dependency id="DocumentFormat.OpenXml" version="2.7.2" />
<dependency id="DocumentFormat.OpenXml" version="2.8.1" />
<dependency id="Microsoft.CodeAnalysis.CSharp" version="2.10.0" />
</dependencies>
</metadata>
<files>
<file src="..\lib\net35\release\SharpDocx.*" target="lib/net35" />
<file src="..\lib\net45\release\SharpDocx.*" target="lib/net45" />
<file src="..\bin\Release\net35\SharpDocx.*" target="lib/net35" />
<file src="..\bin\Release\net45\SharpDocx.*" target="lib/net45" />
<file src="..\bin\Release\netstandard2.0\SharpDocx.*" target="lib/netstandard2.0" />
<file src="..\bin\Release\netstandard2.0\SharpImage.*" target="lib/netstandard2.0" />
</files>
</package>

0 comments on commit 4629d52

Please sign in to comment.