a2a874e333
* Migrate to newer CSProj format; build succesful Rebase onto master * Maintain binaries directory * Reinstate FSharp default condition * Remove reference to packages.config * Test project fixes * Remove nuget.config and "Solution Items" * Remove repetitive assembly info * Reinstate default compiles and cleanup redundant settings * Reinstate any specific settings that defaults are unclear for * Reinstate Framework.nuspec * Make test internal classes public for composer use; undo assembly change Rebase onto master part 2 * Address review; restore some settings * Restore RootNamespace and AssemblyName attributes * Use NugetPackageRoot instead of NugetPackageFolders * Reinstate "RestorePackages" setting * Transfer compilied Python files to launcher and tests bin * Remove conflicting settings * Fix WebSocketSharpFork references * Fix FSharp Core reference * Upgrade TestPlatform.ObjectModel to 16.8.3, and redirect V11 binding * Add Mono.Cecil package * Address review
53 lines
2.5 KiB
XML
53 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<RootNamespace>QuantConnect.Compression</RootNamespace>
|
|
<AssemblyName>QuantConnect.Compression</AssemblyName>
|
|
<TargetFramework>net462</TargetFramework>
|
|
<LangVersion>6</LangVersion>
|
|
<CodeAnalysisRuleSet>..\QuantConnect.ruleset</CodeAnalysisRuleSet>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<DocumentationFile>bin\$(Configuration)\QuantConnect.Compression.xml</DocumentationFile>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>$(SelectedOptimization)</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
<Target Name="Print" BeforeTargets="Build">
|
|
<Message Text="SelectedOptimization $(SelectedOptimization)" Importance="high" />
|
|
</Target>
|
|
<ItemGroup>
|
|
<PackageReference Include="DotNetZip" Version="1.13.3" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.3" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.VersionCheckAnalyzer" Version="2.9.3" />
|
|
<PackageReference Include="Microsoft.CodeQuality.Analyzers" Version="2.9.3" />
|
|
<PackageReference Include="Microsoft.NetCore.Analyzers" Version="2.9.3" />
|
|
<PackageReference Include="Microsoft.NetFramework.Analyzers" Version="2.9.3" />
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="..\Common\Properties\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\QuantConnect.csproj" />
|
|
<ProjectReference Include="..\Logging\QuantConnect.Logging.csproj" />
|
|
</ItemGroup>
|
|
</Project> |