-
Notifications
You must be signed in to change notification settings - Fork 43
/
Directory.Build.props
31 lines (29 loc) · 1.37 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Authors>Mohsen Esmailpour</Authors>
<Description>Simple web UI for several Serilog sinks.</Description>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/serilog-contrib/serilog-ui</PackageProjectUrl>
<PackageReadmeFile>README_Nuget.md</PackageReadmeFile>
<PackageTags>serilog serilog-ui log log-ui web-log</PackageTags>
<RepositoryUrl>https://github.com/serilog-contrib/serilog-ui</RepositoryUrl>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README_Nuget.md" Pack="true" PackagePath="\"/>
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
<None Include="..\..\assets\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Ardalis.GuardClauses" Version="4.6.0"/>
<PackageReference Include="AsyncFixer" Version="1.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Tenekon.MSBuild.Packaging.ProjectBuildInPackage" Version="2.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>