-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (24 loc) · 1.04 KB
/
Directory.Build.props
File metadata and controls
26 lines (24 loc) · 1.04 KB
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
<Project>
<PropertyGroup>
<Version>0.6.0</Version>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- NuGet package metadata (applied to packable projects) -->
<PropertyGroup>
<Authors>DJGosnell</Authors>
<Copyright>Copyright (c) DJGosnell</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Dtronix/Logsmith</PackageProjectUrl>
<RepositoryUrl>https://github.com/Dtronix/Logsmith</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>logging;source-generator;zero-allocation;structured-logging;dotnet</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo-small.png</PackageIcon>
</PropertyGroup>
<!-- Include icon in NuGet packages for packable projects -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)docs/images/logo-small.png" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>