-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathAA.Log4Net.csproj
More file actions
32 lines (24 loc) · 1017 Bytes
/
AA.Log4Net.csproj
File metadata and controls
32 lines (24 loc) · 1017 Bytes
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
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;netcoreapp3.1</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>ChengTian</Authors>
<Company>AA</Company>
<Product>AA</Product>
<PackageProjectUrl>https://github.com/ChengLab/AAFrameWork</PackageProjectUrl>
<PackageTags>AA;Log4Net</PackageTags>
<RepositoryUrl>https://github.com/ChengLab/AAFrameWork</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>AA框架 Log4Net logger support</Description>
<Version>2.0.1</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net452|AnyCPU'">
<DocumentationFile>bin\Debug\net452\AA.Log4Net.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AA.FrameWork\AA.FrameWork.csproj" />
</ItemGroup>
</Project>