-
Notifications
You must be signed in to change notification settings - Fork 0
/
AmExEmailer.csproj
33 lines (29 loc) · 1.01 KB
/
AmExEmailer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ExcelDataReader.DataSet" Version="3.6.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="FluentEmailer.LJShole">
<HintPath>..\FluentEmailer\FluentEmailer.LJShole\bin\Debug\netstandard2.0\FluentEmailer.LJShole.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="ClaySysGMC.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ClaySysGMCFull.xlsx">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Template.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>