34 lines
1012 B
XML
34 lines
1012 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup Label="Globals">
|
|||
|
<SccProjectName>Svn</SccProjectName>
|
|||
|
<SccProvider>SubversionScc</SccProvider>
|
|||
|
<SccAuxPath>Svn</SccAuxPath>
|
|||
|
<SccLocalPath>Svn</SccLocalPath>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
<StartupObject>HRM.MailNotificationProcess.Program</StartupObject>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="SSH.NET" Version="2023.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Ease.Core\Ease.Core.csproj" />
|
|||
|
<ProjectReference Include="..\HRM.BO\HRM.BO.csproj" />
|
|||
|
<ProjectReference Include="..\HRM.DA\HRM.DA.csproj" />
|
|||
|
<ProjectReference Include="..\HRM.Report\HRM.Report.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="appsettings.json">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|