Files
RevitSdkSamples/SDK/Samples/VSProps/SDKSamples.VB.targets
T
2023-04-26 14:47:47 +02:00

20 lines
907 B
XML

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSLangTargets>$(MSBuildToolsPath)\Microsoft.VisualBasic.targets</MSLangTargets>
</PropertyGroup>
<Import Project="$(MSLangTargets)" />
<!-- Make sure the projects using this targets file rebuild if this file changes
This must come after the import of the common targets -->
<ItemGroup>
<Reference Include="RevitAPI">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(SolutionDir)..\..\..\..\$(ConfigurationName)$(PlatformName)\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>