GetWinFXPath 工作
GetWinFXPath 工作會傳回目前 .NET 執行階段的目錄。
工作參數
參數 | 描述 |
---|---|
WinFXPath |
選擇性的 String 輸出參數。 指定 .NET 執行階段的實際路徑。 |
WinFXNativePath |
必要的 String 參數。 指定原生 .NET 執行階段的路徑。 |
WinFXWowPath |
必要的 String 參數。 指定 64 位元系統上 32 位元 Windows on Windows 模組中的 .NET 組件路徑。 |
備註
如果在 64 位元處理器上執行 GetWinFXPath 工作,WinFXPath 參數會設定為 WinFXWowPath 參數中儲存的路徑,否則 WinFXPath 參數會設定為 WinFXNativePath 參數中儲存的路徑。
範例
下列範例示範如何使用 GetWinFXPath 工作來偵測 .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>