GetWinFXPath – úloha
Úloha GetWinFXPath vrátí adresář aktuálního modulu runtime .NET.
Parametry úkolu
Parametr | Popis |
---|---|
WinFXPath |
Volitelný výstupní parametr string . Určuje skutečnou cestu k modulu runtime .NET. |
WinFXNativePath |
Povinný parametr String . Určuje cestu k nativnímu modulu runtime .NET. |
WinFXWowPath |
Povinný parametr String . Určuje cestu k sestavením .NET v 32bitovém modulu Windows v systému Windows v 64bitových systémech. |
Poznámky
Pokud se GetWinFXPath úloha spouští na 64bitovém procesoru, nastaví se parametr WinFXPath na cestu uloženou v parametru WinFXWowPath . V opačném případě je parametr WinFXPath nastaven na cestu uloženou v parametru WinFXNativePath .
Příklad
Následující příklad ukazuje, jak pomocí úlohy GetWinFXPath zjistit nativní cestu k modulu 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>