-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathFinancialModelingPrepApi.csproj
56 lines (50 loc) · 2.32 KB
/
FinancialModelingPrepApi.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
<RootNamespace>MatthiWare.FinancialModelingPrep</RootNamespace>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>MatthiWare</Company>
<PackageId>MatthiWare.FinancialModelingPrep</PackageId>
<Description>FinancialModelingPrep API Client written in .NET 8</Description>
<Copyright>Copyright Matthias Beerens 2021</Copyright>
<Product>FinancialModelingPrep API Client</Product>
<Authors>Matthias Beerens</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/MatthiWare/FinancialModelingPrep.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>FinancialModelingPrep stock quote finance-api fmp</PackageTags>
<PackageProjectUrl>https://github.com/MatthiWare/FinancialModelingPrep.NET</PackageProjectUrl>
<PackageReleaseNotes>- Update to .NET 8
- Add financial score
- Update dependencies
- Bugfixes
</PackageReleaseNotes>
<AssemblyName>FinancialModelingPrep</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>D:\Source\Repos\FinancialModelingPrep.NET\FinancialModelingPrepApi\FinancialModelingPrepApi.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Bert.RateLimiters" Version="1.0.15" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="MinVer" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<MinVerSkip Condition="'$(Configuration)|$(Platform)'=='Debug'">true</MinVerSkip>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerIgnoreHeight>true</MinVerIgnoreHeight>
<MinVerVerbosity>normal</MinVerVerbosity>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>