Included NLog (6.1.1) and NLog.Web.AspNetCore (6.1.2) NuGet packages to enable advanced logging and ASP.NET Core integration.
21 lines
709 B
XML
21 lines
709 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>1.0.1-beta</Version>
|
|
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
|
<FileVersion>1.0.1.0</FileVersion>
|
|
<InformationalVersion>1.0.1-beta</InformationalVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Negotiate" Version="8.0.0" />
|
|
<PackageReference Include="NLog" Version="6.1.1" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="6.1.2" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|