GetWinFXPath, tâche
La tâche GetWinFXPath retourne le répertoire du runtime .NET actif.
Paramètres de tâche
Paramètre | Description |
---|---|
WinFXPath |
Paramètre de sortie String facultatif. Spécifie le chemin réel du runtime .NET. |
WinFXNativePath |
Paramètre String obligatoire. Spécifie le chemin du runtime .NET natif. |
WinFXWowPath |
Paramètre String obligatoire. Spécifie le chemin des assemblys .NET dans le module Windows on Windows 32 bits sur les systèmes 64 bits. |
Notes
Si la tâche GetWinFXPath s’exécute sur un processeur 64 bits, le paramètre WinFXPath a comme valeur le chemin stocké dans le paramètre WinFXWowPath ; sinon, le paramètre WinFXPath a comme valeur le chemin stocké dans le paramètre WinFXNativePath.
Exemple
L’exemple suivant montre comment utiliser la tâche GetWinFXPath pour détecter le chemin natif vers le runtime .NET.
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask
TaskName="Microsoft.Build.Tasks.Windows.GetWinFXPath"
AssemblyFile="C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationBuildTasks.dll" />
<Target Name="GetWinFXPathTask">
<GetWinFXPath
WinFXNativePath="c:\WinFXNative"
WinFXWowPath="c:\WinFXWowNative" />
</Target>
<Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" />
</Project>