-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (20 loc) · 1.07 KB
/
Directory.Build.props
File metadata and controls
20 lines (20 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<Product>Fornax</Product>
<Description>Fornax is a static site generator using type safe F# DSL to define page layouts.</Description>
<Authors>Krzysztof Cieslak</Authors>
<PackageTags>f#, site-generator, html</PackageTags>
<PackageProjectUrl>https://github.com/Ionide/Fornax</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ChangelogFile>$(MSBuildThisFileDirectory)CHANGELOG.md</ChangelogFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' =='true'">
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="/" />
<PackageReference Include="Ionide.KeepAChangelog.Tasks" PrivateAssets="all" />
<PackageReference Include="DotNet.ReproducibleBuilds">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>