GetFrameworkSdkPath Task
Retrieves the path to the .NET Framework SDK.
Task Parameters
The following table describes the parameters of the GetFrameworkSdkPath task.
Parameter | Description |
---|---|
Path |
Optional String output parameter. Contains the path to the .NET Framework SDK. |
Remarks
If the .NET Framework SDK is not installed, the task returns an empty value in the Path parameter.
Example
The following example uses the GetFrameworkSdkPath task to store the path to the .NET Framework SDK in the SdkPath
property.
<Project xmlns="https://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="GetPath">
<GetFrameworkSdkPath>
<Output
TaskParameter="Path"
PropertyName="SdkPath" />
</GetFrameworkSdkPath>
<Message Text="$(SdkPath)"/>
</Target>
</Project>