32 lines
801 B
XML
32 lines
801 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>Exe</OutputType>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<None Remove="appsettings.json" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Include="appsettings.json">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Ease.Core\Ease.Core.csproj" />
|
||
|
<ProjectReference Include="..\HRM.BO\HRM.BO.csproj" />
|
||
|
<ProjectReference Include="..\HRM.DA\HRM.DA.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|