mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-07-28 09:47:43 +00:00
68 lines
3.0 KiB
XML
68 lines
3.0 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Deterministic>true</Deterministic>
|
|
<LangVersion>preview</LangVersion>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<AllowUnsafeBlocks>False</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>
|
|
|
|
<!-- GitVersion Properties -->
|
|
<Version>$(GitVersion_NuGetVersion)</Version>
|
|
<AssemblyVersion>$(GitVersion_AssemblySemVer)</AssemblyVersion>
|
|
<FileVersion>$(GitVersion_AssemblySemFileVer)</FileVersion>
|
|
<InformationalVersion>$(GitVersion_InformationalVersion)</InformationalVersion>
|
|
</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>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
|
|
<PackageReference Include="GitVersion.MsBuild" Version="6.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.DotNet.Interactive.Formatting" Version="1.0.0-beta.21459.1" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsLocalBuild)' == 'true'">
|
|
<QuantowerRoot>D:\Quantower</QuantowerRoot>
|
|
<QuantowerPath>$([System.IO.Directory]::GetDirectories("$(QuantowerRoot)\TradingPlatform", "v1*")[0])</QuantowerPath>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|
|
|
|
|