Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
The current .NET SDK does not support targeting .NET Standard 2.0. Either target .NET Standard 1.6 or lower

Build Error: The current .NET SDK does not support targeting .NET Standard 2.0. Either target .NET Standard 1.6 or lower, or use a version of the .NET SDK that supports .NET Standard 2.0.

  
  
Posted 4 years ago
Votes Newest

Answers


either:

  • (no visual studio) manually install the latest .NET Core sdk
  • (visual studio) run the visual studio installer, update if necessary, click on modify, install ".NET Core cross-platform development"

  
  
Posted 4 years ago
Edited 4 years ago