mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-27 17:27:43 +00:00
62 lines
2.7 KiB
XML
62 lines
2.7 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<NoWarn>$(NoWarn);NU1903;NU5104</NoWarn>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Deterministic>true</Deterministic>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
|
<DebugType>full</DebugType>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<IsLocalBuild Condition="'$(GITHUB_ACTIONS)' == ''">true</IsLocalBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<TrimMode>link</TrimMode>
|
|
<PublishAot>true</PublishAot>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<TieredCompilation>true</TieredCompilation>
|
|
<DebugType>none</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<Deterministic>true</Deterministic>
|
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
|
<EventSourceSupport>false</EventSourceSupport>
|
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
|
<UseSystemResourceKeys>true</UseSystemResourceKeys>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>S1944,S2053,S2222,S2259,S2583,S2589,S3329,S3655,S3900,S3949,S3966,S4158,S4347,S5773,S6781</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
|
|
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.21459.1" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsLocalBuild)' == 'true' AND $([MSBuild]::IsOSPlatform('Windows'))">
|
|
<QuantowerRoot>D:\Quantower</QuantowerRoot>
|
|
<QuantowerPath>$([System.IO.Directory]::GetDirectories("$(QuantowerRoot)\TradingPlatform", "v1*")[0])</QuantowerPath>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|