-
Notifications
You must be signed in to change notification settings - Fork 0
/
FinanceFunctions.csproj
37 lines (33 loc) · 1.32 KB
/
FinanceFunctions.csproj
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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Finance.Util.Library.Functions</PackageId>
<Title>FinanceFunctions</Title>
<Version>1.0.0</Version>
<Authors>JohnDunbar21</Authors>
<Description>Library containing a series of project appraisal and stocks/bonds functions.</Description>
<Copyright>MIT</Copyright>
<PackageIcon>FinanceFunctionsLogo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/JohnDunbar21/FinanceFunctions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Finance, Functions, Corporate Finance, Project Appraisal, Stocks, Bonds</PackageTags>
<PackageReleaseNotes>Version 1.0.0 of the FinanceFunctions package.</PackageReleaseNotes>
<PackAsTool>False</PackAsTool>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\OneDrive\Pictures\Saved Pictures\FinanceFunctionsLogo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>