-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
42 lines (37 loc) · 1.54 KB
/
Directory.Build.props
File metadata and controls
42 lines (37 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<LangVersion>12.0</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<!-- Package metadata -->
<Authors>TradeForge Contributors</Authors>
<Company>TradeForge</Company>
<Copyright>Copyright (c) 2024 TradeForge Contributors</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/tradeforge/tradeforge</PackageProjectUrl>
<RepositoryUrl>https://github.com/tradeforge/tradeforge</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>trading;bot;algorithmic-trading;backtesting;finance</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Version -->
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<!-- Build optimization -->
<Optimize>true</Optimize>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Condition="Exists('$(MSBuildThisFileDirectory)README.md')" />
</ItemGroup>
</Project>