0

I'm still trying to figure out the different versions of the .NET libraries.

Given an existing project, how do I know if it's using .NET Core or .NET Standard?

Project Properties

5 Answers 5

2

.Net Core and .Net Framework can use .Net Standard Libraries which is Shared Library for both.

The versions which is seen under drop down box is .Net Framework versions.

You cannot directly convert .Net Framework project using properties window. But, you can unload project and change TargetFramework to netcoreappx.x by editing .csproj file

Sign up to request clarification or add additional context in comments.

Comments

1

Your project is using standard .Net Framework. In case if your project was using .NET Core that dropdown would look like below: enter image description here

And like below if it was .NET Standard enter image description here

1 Comment

@Matthew yes,exactly, I have not said that it is :)
1

If you are using .Net Core that screen you've attached would look like this:

enter image description here

You will need to download the .Net Core framework, available here: Download .Net Core

Then when you create a new app you select it to be a .Net Core application like so:

enter image description here

Good luck.

Comments

0

When you select the Application tab of unmodified project properties, whatever is selected in that drop down is the .NET framework your project is targeting...

2 Comments

Sure. But as you can see it says neither Standard or Core.
It says .NET Framework indicating it is targeting full .NET Framework, not standard or Core...
-2

This is a "standard" project. The target framework is Framework not Core.

...Smells like homework

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.