26 lines
987 B
XML
26 lines
987 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AssemblyTitle>Starface Outlook Sync</AssemblyTitle>
|
|
<Company>HackerSoft - Hacker-Net Telekommunikation</Company>
|
|
<Product>Starface Outlook Sync</Product>
|
|
<Version>0.0.0.2</Version>
|
|
<AssemblyVersion>0.0.0.2</AssemblyVersion>
|
|
<FileVersion>0.0.0.2</FileVersion>
|
|
<Description>Synchronisiert Outlook-Kontakte mit Starface Telefonanlage</Description>
|
|
<Copyright>Stefan Hacker - HackerSoft</Copyright>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<SelfContained>false</SelfContained>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="Microsoft.Office.Interop.Outlook" Version="15.0.4797.1004" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|