Files
QuanTAlib/Directory.Build.props
T

44 lines
2.0 KiB
XML
Raw Normal View History

2024-09-22 17:31:24 -07:00
<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>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<OutputPath>bin\$(Configuration)\</OutputPath>
<DebugType>full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2024-09-22 18:06:43 -07:00
<IsLocalBuild Condition="'$(GITHUB_ACTIONS)' == ''">true</IsLocalBuild>
2024-09-23 22:08:40 -07:00
<!-- GitVersion settings -->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<UpdateAssemblyInfo>true</UpdateAssemblyInfo>
<GenerateAssemblyVersionAttribute>true</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>true</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>true</GenerateAssemblyInformationalVersionAttribute>
<GetVersion>false</GetVersion>
<GenerateGitVersionInformation>true</GenerateGitVersionInformation>
<WriteVersionInfoToBuildLog>true</WriteVersionInfoToBuildLog>
2024-09-22 17:31:24 -07:00
</PropertyGroup>
2024-09-23 22:08:40 -07: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"/>
<PackageReference Include="GitVersion.MsBuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
2024-09-22 17:31:24 -07:00
</ItemGroup>
2024-09-22 18:06:43 -07:00
<PropertyGroup Condition="'$(IsLocalBuild)' == 'true'">
2024-09-22 17:31:24 -07:00
<QuantowerRoot>D:\Quantower</QuantowerRoot>
<QuantowerPath>$([System.IO.Directory]::GetDirectories("$(QuantowerRoot)\TradingPlatform", "v1*")[0])</QuantowerPath>
</PropertyGroup>
</Project>