Language update. Csproj clean up (#5590)
Build & Test Lean / build (push) Has been cancelled

- Update CSharp language version to latest 9
- Remove old csproj build configurations
This commit is contained in:
Martin-Molinero
2021-05-24 11:10:03 -03:00
committed by GitHub
parent a2beeffcde
commit 9e96aeb440
23 changed files with 44 additions and 225 deletions
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<RootNamespace>QuantConnect.Algorithm.Python</RootNamespace>
<AssemblyName>QuantConnect.Algorithm.Python</AssemblyName>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>6</LangVersion>
<LangVersion>9</LangVersion>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<OutputPath>bin\$(Configuration)\</OutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>