Before the introduction of .csproj in .NET Core 2.0 and later, which file was used to define the project configuration?

  • project.json
  • .csproj
  • settings.config
  • config.json
Before the introduction of .csproj in .NET Core 2.0 and later, the project configuration was defined using the project.json file. This file contained information about dependencies, target frameworks, and other project-specific settings. However, with the transition to .csproj files, project.json was replaced, and project configuration became part of the .csproj file and associated .csproj.user files.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *