GetFrameworkSdkPath Task
.NET Framework 2.0
Retrieves the path to the .NET Framework SDK.
The following example uses the GetFrameworkSdkPath task to store the path to the .NET Framework SDK in the SdkPath property.
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="GetPath">
<GetFrameworkSdkPath>
<Output
TaskParameter="Path"
PropertyName="SdkPath" />
</GetFrameworkSdkPath>
<Message Text="$(SdkPath)"/>
</Target>
</Project>
Community Additions
ADD
Show: