-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddInReferences.proj
43 lines (43 loc) · 2.42 KB
/
AddInReferences.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VmmAdminConsolePath>C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\bin</VmmAdminConsolePath>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.SystemCenter.VirtualMachineManager, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\Microsoft.SystemCenter.VirtualMachineManager.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Errors">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\Errors.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.SystemCenter.VirtualMachineManager.UIAddIns, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\AddInPipeline\AddInViews\Microsoft.SystemCenter.VirtualMachineManager.UIAddIns.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.SystemCenter.VirtualMachineManager.UIAddins.ContextTypes, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\Microsoft.SystemCenter.VirtualMachineManager.UIAddins.ContextTypes.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Remoting, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\Remoting.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Utils, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(VmmAdminConsolePath)\Utils.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.AddIn">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.AddIn.Contract">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
</Project>