WSP Server projects re-targeted to .NET 3.5 to allow PowerShell to work in .NET 2.0 mode.

This is required by Exchange 2010 SP2 module.
This commit is contained in:
feodor_fitsner 2012-03-05 15:50:07 -08:00
parent 094c838d85
commit 07d21775e9
111 changed files with 597 additions and 86 deletions

View file

@ -634,7 +634,7 @@ namespace WebsitePanel.Providers.VirtualizationForPC
{
try
{
hostInfo = client.GetHostByName(String.IsNullOrWhiteSpace(ServerNameSettings)
hostInfo = client.GetHostByName(IsNullOrWhiteSpaceString(ServerNameSettings)
? selTemplate.HostName : ServerNameSettings);
}
catch (Exception ex)
@ -1593,8 +1593,8 @@ namespace WebsitePanel.Providers.VirtualizationForPC
{
case VMForPCSettingsName.SCVMMServer:
{
if (!String.IsNullOrWhiteSpace(connString)
&& !String.IsNullOrWhiteSpace(connName))
if (!IsNullOrWhiteSpaceString(connString)
&& !IsNullOrWhiteSpaceString(connName))
{
EndpointAddress endPointAddress = GetEndPointAddress(connString, connName);
@ -1609,8 +1609,8 @@ namespace WebsitePanel.Providers.VirtualizationForPC
}
case VMForPCSettingsName.SCOMServer:
{
if (!String.IsNullOrWhiteSpace(connString)
&& !String.IsNullOrWhiteSpace(connName))
if (!IsNullOrWhiteSpaceString(connString)
&& !IsNullOrWhiteSpaceString(connName))
{
EndpointAddress endPointAddress = GetEndPointAddress(connString, connName);
@ -1845,8 +1845,8 @@ namespace WebsitePanel.Providers.VirtualizationForPC
{
WSPVirtualMachineManagementServiceClient ret;
if (!String.IsNullOrWhiteSpace(SCVMMServer)
&& !String.IsNullOrWhiteSpace(SCVMMPrincipalName))
if (!IsNullOrWhiteSpaceString(SCVMMServer)
&& !IsNullOrWhiteSpaceString(SCVMMPrincipalName))
{
EndpointAddress endPointAddress = GetEndPointAddress(SCVMMServer, SCVMMPrincipalName);
@ -1866,8 +1866,8 @@ namespace WebsitePanel.Providers.VirtualizationForPC
{
WSPMonitoringServiceClient ret;
if (!String.IsNullOrWhiteSpace(SCOMServer)
&& !String.IsNullOrWhiteSpace(SCOMPrincipalName))
if (!IsNullOrWhiteSpaceString(SCOMServer)
&& !IsNullOrWhiteSpaceString(SCOMPrincipalName))
{
EndpointAddress endPointAddress = GetEndPointAddress(SCOMServer, SCOMPrincipalName);
@ -2047,5 +2047,10 @@ namespace WebsitePanel.Providers.VirtualizationForPC
{
throw new NotImplementedException();
}
private bool IsNullOrWhiteSpaceString(string value)
{
return String.IsNullOrEmpty(value) || (value.Trim().Length == 0);
}
}
}

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.1
// Runtime Version:4.0.30319.239
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Alert" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Alert, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Device" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Device, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ManagementPackRule" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.ManagementPackRule, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ManagementPackUnitMonitor" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.ManagementPackUnitMonitor, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="MonitorHealthState" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitorHealthState, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="MonitorInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitorInfo, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="MonitoredObject" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitoredObject, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="MonitoringObject" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitoringObject, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Pack" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Pack, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="PerformanceCounterCategoryInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceCounterCategoryInfo, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="PerformanceData" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceData, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="PerformanceDataValue" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceDataValue, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="TaskResult" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.TaskResult, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Template" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Template, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="WindowsService" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.WindowsService, Service References.MonitoringWebService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.1
// Runtime Version:4.0.30319.239
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="GuestOSProfileInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.GuestOSProfileInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="HardwareProfileInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.HardwareProfileInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="HostClusterInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostClusterInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="HostDiskInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostDiskInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="HostInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="HostVolumeInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostVolumeInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ISOInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.ISOInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="LibraryServerInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.LibraryServerInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="MemorySettingInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.MemorySettingInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="OperatingSystemInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.OperatingSystemInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ProcessorTypeInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.ProcessorTypeInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="ScriptInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.ScriptInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="TaskInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.TaskInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="TemplateInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.TemplateInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VMCheckpointInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VMCheckpointInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VMHostRatingInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VMHostRatingInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualCOMPortInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualCOMPortInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualDVDDriveInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualDVDDriveInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualDiskDriveInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualDiskDriveInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualHardDiskInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualHardDiskInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualMachineInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualMachineInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualNetworkAdapterInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualNetworkAdapterInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualNetworkInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualNetworkInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="VirtualSCSIAdapterInfo" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualSCSIAdapterInfo, Service References.SVMMService.Reference.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>

View file

@ -10,8 +10,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WebsitePanel.Providers.VirtualizationForPC</RootNamespace>
<AssemblyName>WebsitePanel.Providers.VirtualizationForPC.HyperVForPC</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -39,7 +40,6 @@
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management.Automation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
@ -106,6 +106,51 @@
<None Include="Service References\MonitoringWebService\MonitoringService9.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Alert.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Device.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.ManagementPackRule.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.ManagementPackUnitMonitor.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitoredObject.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitorHealthState.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitorInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.MonitoringObject.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Pack.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceCounterCategoryInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceData.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.PerformanceDataValue.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.TaskResult.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.Template.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\MonitoringWebService\WebsitePanel.Providers.VirtualizationForPC.MonitoringWebService.WindowsService.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\VirtualMachineManagementService.wsdl" />
<None Include="Service References\SVMMService\VirtualMachineManagementService.xsd">
<SubType>Designer</SubType>
@ -128,6 +173,78 @@
<None Include="Service References\SVMMService\VirtualMachineManagementService6.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.GuestOSProfileInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.HardwareProfileInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostClusterInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostDiskInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.HostVolumeInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.ISOInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.LibraryServerInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.MemorySettingInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.OperatingSystemInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.ProcessorTypeInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.ScriptInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.TaskInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.TemplateInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualCOMPortInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualDiskDriveInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualDVDDriveInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualHardDiskInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualMachineInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualNetworkAdapterInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualNetworkInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VirtualSCSIAdapterInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VMCheckpointInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
<None Include="Service References\SVMMService\WebsitePanel.Providers.VirtualizationForPC.SVMMService.VMHostRatingInfo.datasource">
<DependentUpon>Reference.svcmap</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<WCFMetadataStorage Include="Service References\MonitoringWebService\" />