The short answer: It is not your job as an ISV to manage installation of the .net framework, call the .Net Framework installation bootstrapper and be done with it. System admins may wish to deploy the software in different ways, make sure you are not limiting yourself by making assumptions.
The long answer: Use the deployment guide to determine how to package your application with the .net Framework.
Update regarding DISM:
I didn't mean to suggest that DISM is going to dissappear, only that references to DISM are being replaced with references to powershell and that DISM is a purely administrative tool. For example, compare the MSDN documentation on Installation of Windows Features for Windows Server 2012 which hilights Install-WindowsFeature for administrative installation of features and only mentions DISM briefly to the equivelent documentation for 2008 R2.
However, I maintain that actions like adding and removing roles and features should not be performed silently as the result of an application installation. Per the deployment guide, the reccomended installation method for chaining the .Net Framework is to call the bootstrapper and leave the rest to it. See here for exact arguments.
The bootstrapper, which would normally install the .net framework in a lower version of Windows, is shimmed and replaced by the dialog listed below - as long as there are no other deployment concerns (media, permissions, group policy, etc...) The feature is installed and everyone is happy. If there are deployment concerns, the user is directed to the Server Management tool, where it can be enabled manually.

Beyond the formal guidance for installation of the .Net Framework, on demand installation is referenced as the preferred method for maintaning compatibility in the below documents:
- New features in .Net 4.5 (Slide 8)
"Preferred: Your setup tries to install 3.5 MSI ... shim installs correct version..."
- Windows 8 and .Net Framework 3.5
"You attempt to install .Net 2.0, 3.0, or 3.5 using a redistributable package available for download from Microsoft... an application shim in Windows 8 intercepts the attempt and invokes the installation of the new .Net 3.5 feature. Once triggered, the installation should proceed as if it was initiated from the UI, DISM, or Powershell."
- Installing the .NET Framework 3.5 on Windows 8
"To run applications that require the .NET Framework 3.5 on Windows 8, you must enable version 3.5 on your computer. There are two ways you can do this: by installing or running an application that requires the .NET Framework 3.5 (that is, by installing the .NET Framework 3.5 on demand), or by enabling the .NET Framework 3.5 in Control Panel."