Files
QuanTAlib/Directory.Build.props
T

62 lines
2.7 KiB
XML
Raw Normal View History

2024-09-22 17:31:24 -07:00
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
2024-10-07 21:41:26 -07:00
<LangVersion>preview</LangVersion>
2024-11-07 21:40:02 -08:00
<NoWarn>$(NoWarn);NU1903;NU5104;NETSDK1057</NoWarn>
2024-09-22 17:31:24 -07:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
2024-10-07 21:41:26 -07:00
<NeutralLanguage>en-US</NeutralLanguage>
2024-09-22 17:31:24 -07:00
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<PlatformTarget>AnyCPU</PlatformTarget>
2024-10-27 16:11:08 -07:00
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2024-09-22 17:31:24 -07:00
<OutputPath>bin\$(Configuration)\</OutputPath>
2024-09-24 16:41:26 -07:00
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
2024-09-22 17:31:24 -07:00
<DebugType>full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2024-09-24 16:41:26 -07:00
<PlatformTarget>AnyCPU</PlatformTarget>
2024-09-22 18:06:43 -07:00
<IsLocalBuild Condition="'$(GITHUB_ACTIONS)' == ''">true</IsLocalBuild>
2024-10-05 19:36:01 -07:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>link</TrimMode>
<PublishAot>true</PublishAot>
<PublishReadyToRun>true</PublishReadyToRun>
<TieredCompilation>true</TieredCompilation>
2024-11-04 07:21:19 -08:00
<DebugType>portable</DebugType>
2024-10-05 19:36:01 -07:00
<Optimize>true</Optimize>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PublishSingleFile>true</PublishSingleFile>
2024-11-04 07:21:19 -08:00
<DebugSymbols>true</DebugSymbols>
2024-10-05 19:36:01 -07:00
<Deterministic>true</Deterministic>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
2024-11-07 21:40:02 -08:00
2024-10-14 08:45:32 -07:00
</PropertyGroup>
2024-11-04 07:21:19 -08:00
<PropertyGroup>
2024-10-14 08:45:32 -07:00
<NoWarn>S1944,S2053,S2222,S2259,S2583,S2589,S3329,S3655,S3900,S3949,S3966,S4158,S4347,S5773,S6781</NoWarn>
2024-09-22 17:31:24 -07:00
</PropertyGroup>
2024-11-04 07:21:19 -08:00
2024-09-22 17:31:24 -07:00
<ItemGroup>
2024-09-23 22:08:40 -07:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
2024-09-30 06:46:07 -07:00
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.21459.1" />
2024-09-22 17:31:24 -07:00
</ItemGroup>
2024-10-26 23:54:55 -07:00
<PropertyGroup Condition="'$(IsLocalBuild)' == 'true' AND $([MSBuild]::IsOSPlatform('Windows'))">
2024-09-22 17:31:24 -07:00
<QuantowerRoot>D:\Quantower</QuantowerRoot>
<QuantowerPath>$([System.IO.Directory]::GetDirectories("$(QuantowerRoot)\TradingPlatform", "v1*")[0])</QuantowerPath>
</PropertyGroup>
2024-09-24 16:41:26 -07:00
2024-10-05 19:36:01 -07:00
</Project>