23 lines
811 B
XML
23 lines
811 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="log4net" Version="2.0.15" />
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ForumBusinessLogic\ForumBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\ForumContracts\ForumContracts.csproj" />
|
|
<ProjectReference Include="..\ForumDatabaseImplement\ForumDatabaseImplement.csproj" />
|
|
<ProjectReference Include="..\ForumMongoDataBase\ForumMongoDataBase.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|