-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutomatedTrading.csproj
54 lines (49 loc) · 1.73 KB
/
AutomatedTrading.csproj
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
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AlgoBuild>false</AlgoBuild>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>AutomatedTrading</Title>
<Authors>davdcsam</Authors>
<PackageProjectUrl>https://github.com/davdcsam/AutomatedTrading.NET</PackageProjectUrl>
<PackageIcon>resources/dotnet.png</PackageIcon>
<RepositoryUrl>https://github.com/davdcsam/AutomatedTrading.NET</RepositoryUrl>
<PackageTags>cAlgo cBot CTrader Automate</PackageTags>
<PackAsTool>False</PackAsTool>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<NeutralLanguage>aa-DJ</NeutralLanguage>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>1.0.6</Version>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>
Initial update:
Add Limits, Parallels, ProfitProtection, SectionTime & Trade classes.
</PackageReleaseNotes>
<ApplicationIcon>resources\automatedtrading.net.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="resources\automatedtrading.net.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="cTrader.Automate" Version="1.0.8" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="resources\dotnet.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>