Skip to content

Commit 2563286

Browse files
ES-876618-Replace-text-in-list-paragraph
1 parent fe6c9a4 commit 2563286

File tree

6 files changed

+4
-11
lines changed

6 files changed

+4
-11
lines changed

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph.sln renamed to HTML-conversions/Replace-text-in-list-paragraph-with-HTML/.NET/Replace-text-in-list-paragraph-with-HTML.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30804.86
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Replace-text-in-list-paragraph", "Replace-text-in-list-paragraph/Replace-text-in-list-paragraph.csproj", "{DDC158F3-4052-48B7-AF5F-4AB3D6CD4B22}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Replace-text-in-list-paragraph-with-HTML", "Replace-text-in-list-paragraph-with-HTML/Replace-text-in-list-paragraph-with-HTML.csproj", "{DDC158F3-4052-48B7-AF5F-4AB3D6CD4B22}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph/Data/File.html renamed to HTML-conversions/Replace-text-in-list-paragraph-with-HTML/.NET/Replace-text-in-list-paragraph-with-HTML/Data/File.html

File renamed without changes.

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph/Data/Template.docx renamed to HTML-conversions/Replace-text-in-list-paragraph-with-HTML/.NET/Replace-text-in-list-paragraph-with-HTML/Data/Template.docx

File renamed without changes.

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph/Program.cs renamed to HTML-conversions/Replace-text-in-list-paragraph-with-HTML/.NET/Replace-text-in-list-paragraph-with-HTML/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Syncfusion.DocIO.DLS;
33
using System.IO;
44

5-
namespace Replace_text_in_list_paragraph
5+
namespace Replace_text_in_list_paragraph_with_HTML
66
{
77
class Program
88
{
@@ -60,7 +60,7 @@ static void Main(string[] args)
6060
}
6161
}
6262
}
63-
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"Output/Result.docx"), FileMode.Create, FileAccess.ReadWrite))
63+
using (FileStream outputFileStream = new FileStream(Path.GetFullPath(@"../../../Result.docx"), FileMode.Create, FileAccess.ReadWrite))
6464
{
6565
//Save the modified Word document to the output file stream.
6666
document.Save(outputFileStream, FormatType.Docx);

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph/Replace-text-in-list-paragraph.csproj renamed to HTML-conversions/Replace-text-in-list-paragraph-with-HTML/.NET/Replace-text-in-list-paragraph-with-HTML/Replace-text-in-list-paragraph-with-HTML.csproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<RootNamespace>Replace_text_in_list_paragraph</RootNamespace>
6+
<RootNamespace>Replace_text_in_list_paragraph_with_HTML</RootNamespace>
77
</PropertyGroup>
88

99
<ItemGroup>
@@ -14,15 +14,9 @@
1414
<None Update="Data\File.html">
1515
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
1616
</None>
17-
<None Update="Data\Input.docx">
18-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
19-
</None>
2017
<None Update="Data\Template.docx">
2118
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
2219
</None>
23-
<None Update="Output\.gitkeep">
24-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
25-
</None>
2620
</ItemGroup>
2721

2822
</Project>

HTML-conversions/Replace-text-in-list-paragraph/.NET/Replace-text-in-list-paragraph/Output/.gitkeep

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)