-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDirectory.Build.props
28 lines (24 loc) · 1.07 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
<Project>
<PropertyGroup>
<Description>
The package is a collection of of files that contain Data Analytics for Finance materials
and exercises which rely on F# programming language.
</Description>
<Authors>Nicholas Hirschey; Davide Costa</Authors>
<Copyright>Copyright 2023</Copyright>
<ChangelogFile>$(MSBuildThisFileDirectory)CHANGELOG.md</ChangelogFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<FsDocsLicenseLink>https://github.com/nhirschey/Teaching/blob/main/LICENSE.md</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://github.com/nhirschey/Teaching/blob/main/CHANGELOG.md</FsDocsReleaseNotesLink>
<RepositoryUrl>https://github.com/nhirschey/Teaching</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(IsPackable)' == 'true'">
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup>
<FsDocsLogoSource>img/logo.png</FsDocsLogoSource>
<FsDocsFaviconSource>img/logo.png</FsDocsFaviconSource>
</PropertyGroup>
</Project>