Should the following now be added to the .csproj templates?
<PropertyGroup Condition=" Exists ( '$(FrameworkSdkPath)bin\NETFX 4.6.2 Tools\ildasm.exe' ) ">
<ILDasm>"$(FrameworkSdkPath)bin\NETFX 4.7 Tools\ildasm.exe" /nobar /linenum /output:"$(ILFile)" @(IntermediateAssembly->'"%(FullPath)"', ' ')</ILDasm>
</PropertyGroup>
<PropertyGroup Condition=" Exists ( '$(FrameworkSdkPath)bin\NETFX 4.6.2 Tools\ildasm.exe' ) ">
<ILDasm>"$(FrameworkSdkPath)bin\NETFX 4.7.1 Tools\ildasm.exe" /nobar /linenum /output:"$(ILFile)" @(IntermediateAssembly->'"%(FullPath)"', ' ')</ILDasm>
</PropertyGroup>
<PropertyGroup Condition=" Exists ( '$(FrameworkSdkPath)bin\NETFX 4.6.2 Tools\ildasm.exe' ) ">
<ILDasm>"$(FrameworkSdkPath)bin\NETFX 4.7.2 Tools\ildasm.exe" /nobar /linenum /output:"$(ILFile)" @(IntermediateAssembly->'"%(FullPath)"', ' ')</ILDasm>
</PropertyGroup>
Just wondering if this should be added for supporting .NET 4.7, 4.7.1 and 4.7.2 projects?
Should the following now be added to the .csproj templates?
Just wondering if this should be added for supporting .NET 4.7, 4.7.1 and 4.7.2 projects?