Skip to content

Commit c5c65f2

Browse files
author
sneha.biju
committed
Sample to convert RTF document to PDF
1 parent b6263e6 commit c5c65f2

File tree

4 files changed

+4962
-0
lines changed

4 files changed

+4962
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34322.80
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Convert-RTF-to-PDF", "Convert-RTF-to-PDF\Convert-RTF-to-PDF.csproj", "{036E07A8-148F-4447-958A-9DC7BCF2D543}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{036E07A8-148F-4447-958A-9DC7BCF2D543}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{036E07A8-148F-4447-958A-9DC7BCF2D543}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{036E07A8-148F-4447-958A-9DC7BCF2D543}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{036E07A8-148F-4447-958A-9DC7BCF2D543}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {191FBCEE-9DB8-4B8B-BDB0-23AF72D40599}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net6.0</TargetFramework>
6+
<RootNamespace>Convert_RTF_to_PDF</RootNamespace>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="*" />
13+
</ItemGroup>
14+
15+
</Project>

0 commit comments

Comments
 (0)