-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPredictNowNET.csproj
35 lines (30 loc) · 1.09 KB
/
PredictNowNET.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>QuantConnect</RootNamespace>
<AssemblyName>QuantConnect.PredictNowNET</AssemblyName>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>$(OutputPath)\QuantConnect.PredictNowNET.xml</DocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.3</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QuantConnect.Common" Version="2.5.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<None Update="PredictNowNET-Example-CSharp.ipynb">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="PredictNowNET-Example-Python.ipynb">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>