Open kirchsth opened 5 years ago
Thank you for the tool, it makes a great job.
Could you migrate the PreBuildEvent and PostBuildEvent too? Because without changes no macros like e.g. $(ProjectDir) are replaced anymore. But if you would convert them into tasks then they are replaced again.
e.g. Old:
<PropertyGroup> <PreBuildEvent>"$(ProjectDir)PreBuildEvent.bat" "$(ProjectDir)..\" "$(ProjectDir)" "$(TargetDir)" 0 /> </PropertyGroup>
New:
<Target Name="PreBuild" BeforeTargets="PreBuildEvent"> <Exec Command=""$(ProjectDir)PreBuildEvent.bat" "$(ProjectDir)..\" "$(ProjectDir)" "$(TargetDir)" "$(DevEnvDir)" 0" /> </Target>
Details can be found https://github.com/dotnet/project-system/issues/1569
Thank you and best regards Helmut
Thank you for the tool, it makes a great job.
Could you migrate the PreBuildEvent and PostBuildEvent too? Because without changes no macros like e.g. $(ProjectDir) are replaced anymore. But if you would convert them into tasks then they are replaced again.
e.g. Old:
New:
Details can be found https://github.com/dotnet/project-system/issues/1569
Thank you and best regards Helmut