An API to locate MSBuild assemblies from an installed Visual Studio location. Use this to ensure that calling the MSBuild API will use the same toolset that a build from Visual Studio or msbuild.exe would.
Other
220
stars
83
forks
source link
Possible to allow for .NETStandard2.0 assemblies #78
That is the question, whether it is possible to allow for netstandard2.0. We are working on a compilation manager fixture and, apparently, we need to align with an appropriate SDK instance. The rub in our case is that our fixture assemby(ies) are ostensibly targeting netstandard2.0. I suppose we could target netcoreapp2.1 in a pinch if that's what it took to work through the issue as we are interested more in the build fixture operating in a run time, but the surface area is interesting for wider potential application. Thoughts? Recommendations? Thank you..
That is the question, whether it is possible to allow for
netstandard2.0
. We are working on a compilation manager fixture and, apparently, we need to align with an appropriate SDK instance. The rub in our case is that our fixture assemby(ies) are ostensibly targetingnetstandard2.0
. I suppose we could targetnetcoreapp2.1
in a pinch if that's what it took to work through the issue as we are interested more in the build fixture operating in a run time, but the surface area is interesting for wider potential application. Thoughts? Recommendations? Thank you..