dotnet: remove netstandard2.0 (unsupported)

ortools\sat\csharp\CpSolver.cs(214,25): error CS1061: 'Queue<Term>' does not contain a definition for 'TryDequeue' and no accessible extension method 'TryDequeue' accepting a first argument of type 'Queue<Term>' could be found
This commit is contained in:
Corentin Le Molgat
2022-11-21 17:26:32 +01:00
parent 8c94e325f0
commit 03abc88fd0
2 changed files with 0 additions and 6 deletions

View File

@@ -268,9 +268,6 @@ if(BUILD_DOTNET)
option(USE_DOTNET_48 "Use .Net Framework 4.8 support" OFF)
message(STATUS ".Net: Use .Net Framework 4.8 support: ${USE_DOTNET_48}")
option(USE_DOTNET_STD_20 "Use .Net Standard 2.0 support" OFF)
message(STATUS ".Net: Use .Net Framework 2.0 support: ${USE_DOTNET_STD_20}")
option(USE_DOTNET_STD_21 "Use .Net Standard 2.1 support" OFF)
message(STATUS ".Net: Use .Net Framework 2.1 support: ${USE_DOTNET_STD_21}")

View File

@@ -74,9 +74,6 @@ message(STATUS ".Net runtime project build path: ${DOTNET_NATIVE_PROJECT_DIR}")
if(USE_DOTNET_48)
list(APPEND TFM "net48")
endif()
if(USE_DOTNET_STD_20)
list(APPEND TFM "netstandard2.0")
endif()
if(USE_DOTNET_STD_21)
list(APPEND TFM "netstandard2.1")
endif()