19 lines
505 B
XML
19 lines
505 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
||
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\DataClients\DataClients.csproj" />
|
||
|
<ProjectReference Include="..\Mailing\Mailing.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|