-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRealTimeMarketAPI.Sdk.csproj
More file actions
42 lines (35 loc) · 1.66 KB
/
RealTimeMarketAPI.Sdk.csproj
File metadata and controls
42 lines (35 loc) · 1.66 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>RealTimeMarketAPI.Sdk</RootNamespace>
<AssemblyName>RealTimeMarketAPI.Sdk</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<!-- NuGet package metadata -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>RealMarketAPI.Sdk</PackageId>
<Version>1.0.5</Version>
<Authors>RealMarketAPI</Authors>
<Company>RealMarketAPI</Company>
<Description>Official .NET SDK for the RealMarket API. Provides strongly-typed, async access to real-time market prices, OHLCV candles, historical data, and technical indicators (SMA, EMA, RSI, MACD, Fibonacci, Support/Resistance) with built-in dependency injection support.</Description>
<PackageTags>market;api;forex;crypto;realtime;trading;indicators;sma;ema;rsi;macd;fibonacci</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Phideround/RealMarketAPI.Sdk</RepositoryUrl>
<PackageProjectUrl>https://realmarketapi.com</PackageProjectUrl>
<Copyright>Copyright © RealMarketAPI 2025</Copyright>
<Title>Real-time Market API</Title>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.5" />
</ItemGroup>
</Project>