I have NET Standard project with Person.cs
file. Then I also have .NET Framework 4.6.2 library project. I have added Person.cs
in .NET Framework 4.6.2 project as existing item and as a link
from NETStandard project. ( because I wanted to keep same copy of person.cs in both the projects)
The Person
class in .NET Standard will get compiled with target framework .NET Standard, but will Person
class in .NET Framework 4.6.2 get complied as .NET Framework 4.6.2?