Skip to content

Commit d220d25

Browse files
authored
Prepare release v0.3.3 (#138)
* Conditional deps * Prepare release
1 parent 03fd7de commit d220d25

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

FinancialModelingPrepApi.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31229.75
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.12.35527.113 d17.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FinancialModelingPrepApi", "FinancialModelingPrepApi\FinancialModelingPrepApi.csproj", "{B691C86E-CE23-40FA-811E-8D17BE9DD8BE}"
77
EndProject

FinancialModelingPrepApi/FinancialModelingPrepApi.csproj

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
<PackageTags>FinancialModelingPrep stock quote finance-api fmp</PackageTags>
1818
<PackageProjectUrl>https://github.com/MatthiWare/FinancialModelingPrep.NET</PackageProjectUrl>
1919
<PackageReleaseNotes>- Update dependencies
20-
- Bugfixes
21-
- Remove historical discounted cashflows endpoints
20+
- Add Financial Growth Endpoints
2221
</PackageReleaseNotes>
2322
<AssemblyName>FinancialModelingPrep</AssemblyName>
2423
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -28,11 +27,20 @@
2827
<DocumentationFile>D:\Source\Repos\FinancialModelingPrep.NET\FinancialModelingPrepApi\FinancialModelingPrepApi.xml</DocumentationFile>
2928
</PropertyGroup>
3029

31-
<ItemGroup>
32-
<PackageReference Include="Bert.RateLimiters" Version="1.0.15" />
30+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
3331
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
3432
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0" />
3533
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
34+
</ItemGroup>
35+
36+
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
37+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
38+
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
39+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
40+
</ItemGroup>
41+
42+
<ItemGroup>
43+
<PackageReference Include="Bert.RateLimiters" Version="1.0.15" />
3644
<PackageReference Include="MinVer" Version="6.0.0">
3745
<PrivateAssets>all</PrivateAssets>
3846
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

FinancialModelingPrepApi/FinancialModelingPrepApi.xml

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)