-
Notifications
You must be signed in to change notification settings - Fork 754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[.NETCore][Research] research MSBuild Tasks for .NET Core MSBuild #1030
Comments
@dasMulli can help us perhaps? Do you know something about this? |
[@]AArnott has good isolated task samples at https://github.com/AArnott/Nerdbank.MSBuildExtension/tree/master/src/Nerdbank.MSBuildExtension making use of |
oh and current best practice is multi-targeting the tasks to net*;netcoreapp2.0 - not netstandard, because the published output of netstandard may not be runnable (no conflict resolution / trimming needed for loading into netcoreapp) |
I found a blogpost how to write such task: http://www.natemcmaster.com/blog/2017/07/05/msbuild-task-in-nuget/ |
As discussed offline, a sample project file that packs the publish-output (to include all dependency dlls) is dotnet/sdk#1846 (comment) |
research is done. MSBuild Task is implemented |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Our Generate task also needs to run in the .NET Core MSBuild version.
The current base class AppDomainIsolatedTask is not in .NET Standard/Core.
We need to research how this is now done.
The text was updated successfully, but these errors were encountered: