If i create a project(with TargetFramework as netstandard2.0) using VS2017, the csproj automatically picks all the *.cs/folders copied to that directory and the csproj file doesn't contain any references to the *.cs files.
If i have to use command-line option MSBUILD to compile the project using the sln/csproj how do i do it ?Because the csproj doesn't contain the references to cs files.
Because the earlier csproj(created using vs2012) version would contain tag which would contain the list of files to compile,but with VS2017 the csproj file no longer contain those tags.
<ItemGroup><Compile Remove="SomeFile.cs" /></ItemGroup>- DavidG