mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-04 12:07:44 +00:00
71 lines
3.2 KiB
XML
71 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Title>QuanTAlib</Title>
|
|
<Version>0.1.24</Version>
|
|
<Product>Library of Technical Indicators for .NET</Product>
|
|
<Description>Quantitative Technical Analysis library for both real-time (streaming) and historical data analysis</Description>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/mihakralj/QuanTAlib</RepositoryUrl>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<Authors>Miha Kralj</Authors>
|
|
<Copyright>Miha Kralj</Copyright>
|
|
<PackageReadmeFile>readme.md</PackageReadmeFile>
|
|
<TargetFrameworks>net7.0;net6.0;netstandard2.1</TargetFrameworks>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<RootNamespace>QuanTAlib</RootNamespace>
|
|
<AssemblyName>QuanTAlib</AssemblyName>
|
|
<IsPublishable>True</IsPublishable>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
<DebugType>embedded</DebugType>
|
|
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<PackageTags>
|
|
Indicators;Stock;Market;Technical;Analysis;Algorithmic;Trading;Trade;Trend;Momentum;Finance;Algorithm;Algo;
|
|
AlgoTrading;Financial;Strategy;Chart;Charting;Oscillator;Overlay;Equity;Bitcoin;Crypto;Cryptocurrency;Forex;
|
|
Quantitative;Historical;Quotes;
|
|
</PackageTags>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageLicenseFile></PackageLicenseFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>True</Optimize>
|
|
<WarningLevel>7</WarningLevel>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<PlatformTarget>anycpu</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType></DebugType>
|
|
<Optimize>True</Optimize>
|
|
<WarningLevel>7</WarningLevel>
|
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
|
|
<PlatformTarget>anycpu</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PackageIcon>QuanTAlib2.png</PackageIcon>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/mihakralj/QuanTAlib/main/.github/QuanTAlib2.png</PackageIconUrl>
|
|
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
|
|
<CodeAnalysisRuleSet>..\.sonarlint\mihakralj_quantalibcsharp.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\.sonarlint\mihakralj_quantalib\CSharp\SonarLint.xml" Link="SonarLint.xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\Docs\readme.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
<None Include="..\.github\QuanTAlib2.png">
|
|
<Pack>True</Pack>
|
|
<Visible>False</Visible>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
<PackageReference Include="System.Text.Json" Version="7.0.0" />
|
|
</ItemGroup>
|
|
</Project> |