-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathVisualGDBCore.targets
More file actions
22 lines (22 loc) · 1.01 KB
/
VisualGDBCore.targets
File metadata and controls
22 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualGDBCoreProjectFile>$(MSBuildThisFileDirectory)..\..\..\products\VisualGDB\VisualGDBCore\VisualGDBCore.csproj</VisualGDBCoreProjectFile>
</PropertyGroup>
<ItemGroup Condition="Exists('$(VisualGDBCoreProjectFile)')">
<ProjectReference Include="$(VisualGDBCoreProjectFile)" >
<Project>{0CB42DF0-3F61-41A4-8679-2D8A1A89AFA2}</Project>
<Name>VisualGDBCore</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup Condition="(!Exists('$(VisualGDBCoreProjectFile)')) and ('$(VISUALGDB_DIR)' != '')">
<Reference Include="VisualGDBCore">
<HintPath>$(VISUALGDB_DIR)\VisualGDBCore.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition="(!Exists('$(VisualGDBCoreProjectFile)')) and ('$(VISUALGDB_DIR)' == '')">
<Reference Include="VisualGDBCore">
<HintPath>C:\Program Files (x86)\Sysprogs\VisualGDB\VisualGDBCore.dll</HintPath>
</Reference>
</ItemGroup>
</Project>