-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWima.Log.csproj
25 lines (22 loc) · 1.16 KB
/
Wima.Log.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyVersion>1.7.3.7</AssemblyVersion>
<FileVersion>1.7.3.7</FileVersion>
<ImplicitUsings>true</ImplicitUsings>
<LangVersion>12</LangVersion>
<IsAotCompatible>true</IsAotCompatible>
<TrimmerRootAssembly>$(AssemblyName)</TrimmerRootAssembly>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" Condition="'$(TargetFramework)'=='net8.0' Or '$(TargetFramework)'=='net7.0'" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" Condition="'$(TargetFramework)'=='netstandard2.0'" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.0" Condition="'$(TargetFramework)'=='netstandard2.0'" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="8.0.0" Condition="'$(TargetFramework)'=='netstandard2.0'" />
<PackageReference Include="NEST" Version="7.17.5" />
</ItemGroup>
</Project>