Skip to content

Commit 61f2380

Browse files
committed
Add .NET Sample for mailmerge
1 parent 1cfc871 commit 61f2380

97 files changed

Lines changed: 111 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
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.14.37216.2 d17.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generate-multiple-Word-documents", "Generate-multiple-Word-documents\Generate-multiple-Word-documents.csproj", "{4CE62E51-B973-4054-B932-9037D1A31029}"
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+
{4CE62E51-B973-4054-B932-9037D1A31029}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{4CE62E51-B973-4054-B932-9037D1A31029}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{4CE62E51-B973-4054-B932-9037D1A31029}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{4CE62E51-B973-4054-B932-9037D1A31029}.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 = {F50F5E41-86EF-430C-8B45-E147E4022E74}
24+
EndGlobalSection
25+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net8.0</TargetFramework>
6+
<RootNamespace>Generate_multiple_Word_documents</RootNamespace>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
<PlatformTarget>x86</PlatformTarget>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<PackageReference Include="Syncfusion.DocIO.Net.Core" Version="*" />
14+
<PackageReference Include="System.Data.OleDb" Version="10.0.7" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<None Update="Data\CustomerDetails.mdb">
19+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
20+
</None>
21+
<None Update="Data\LetterTemplate.docx">
22+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
23+
</None>
24+
</ItemGroup>
25+
26+
</Project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


0 commit comments

Comments
 (0)