19 lines
901 B
XML
19 lines
901 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\app.Interface\app.Interface.csproj"/>
|
|
<ProjectReference Include="..\app.Model\app.Model.csproj"/>
|
|
<ProjectReference Include="..\app.Data\app.Data.csproj"/>
|
|
<ProjectReference Include="..\app.Configuration\app.Configuration.csproj"/>
|
|
<ProjectReference Include="..\app.SMTP.Interface\app.SMTP.Interface.csproj"/>
|
|
<ProjectReference Include="..\app.SMTP.Model\app.SMTP.Model.csproj"/>
|
|
<ProjectReference Include="..\app.Share.Common\app.Share.Common.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.2"/>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2"/>
|
|
<PackageReference Include="NLog" Version="4.7.13"/>
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
</Project> |