24 lines
656 B
XML
24 lines
656 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ApplicationIcon />
|
|
<OutputType>Library</OutputType>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\VOL.Core\VOL.Core.csproj" />
|
|
<ProjectReference Include="..\VOL.Entity\VOL.Entity.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="IRepositories\Appointment\" />
|
|
<Folder Include="IServices\Appointment\Partial\" />
|
|
<Folder Include="Services\Appointment\Partial\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|