80 lines
3.3 KiB
XML
80 lines
3.3 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>Intel.Management.PSModule</RootNamespace>
|
|
<AssemblyName>IntelvProModule</AssemblyName>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.Configuration.Install" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="DriveInstaller.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
|
|
<PackageReference Include="Microsoft.PowerShell.5.1.ReferenceAssemblies" Version="1.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="AmtDriveContainer.cs" />
|
|
<Compile Remove="AmtDriveContext.cs" />
|
|
<Compile Remove="AmtDriveException.cs" />
|
|
<Compile Remove="AmtDriveInfo.cs" />
|
|
<Compile Remove="AmtDriveItem.cs" />
|
|
<Compile Remove="AmtDriveProvider.cs" />
|
|
<Compile Remove="AmtDriveService.cs" />
|
|
<Compile Remove="AmtImpl\AmtCredential.cs" />
|
|
<Compile Remove="AmtImpl\AmtDriveInfo.cs" />
|
|
<Compile Remove="AmtImpl\AmtDriveParameters.cs" />
|
|
<Compile Remove="AmtImpl\AmtDriveProvider.cs" />
|
|
<Compile Remove="AmtImpl\StorageAdmin.cs" />
|
|
<Compile Remove="AmtImpl\StorageAdminItem.cs" />
|
|
<Compile Remove="AmtImpl\StorageItem.cs" />
|
|
<Compile Remove="AmtImpl\StorageManager.cs" />
|
|
<Compile Remove="AmtImpl\StorgeAdminApplication.cs" />
|
|
<Compile Remove="Amt\AmtResourceType.cs" />
|
|
<Compile Remove="Amt\AuditLogContainer.cs" />
|
|
<Compile Remove="Amt\ConvertToSid.cs" />
|
|
<Compile Remove="Amt\LogService.cs" />
|
|
<Compile Remove="Amt\RedirectionServices.cs" />
|
|
<Compile Remove="Amt\StorageAdminItem.cs" />
|
|
<Compile Remove="Amt\StorageItem.cs" />
|
|
<Compile Remove="Amt\StorgeAdminApplication.cs" />
|
|
<Compile Remove="Amt\ValueMap.cs" />
|
|
<Compile Remove="DriveValueType.cs" />
|
|
<Compile Remove="Heci\LocalService.cs" />
|
|
<Compile Remove="ManagedItem.cs" />
|
|
<Compile Remove="ManagedType.cs" />
|
|
<Compile Remove="ManagedValue.cs" />
|
|
<Compile Remove="ServiceItemValue.cs" />
|
|
<Compile Remove="StorageAdminItem.cs" />
|
|
<Compile Remove="StorageItem.cs" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Label="Kit">
|
|
<Kit>$([System.Convert]::ToBoolean(true))</Kit>
|
|
<Bin>..\..\..\Bin</Bin>
|
|
<Bin Condition="Exists('..\..\Bin')">..\..\Bin</Bin>
|
|
<Bin Condition="Exists('..\Bin')">..\Bin</Bin>
|
|
<Bin Condition="Exists('.\Bin')">.\Bin</Bin>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="$(Kit)" Label="Kit References">
|
|
<Reference Include="Intel.Wsman.Scripting">
|
|
<HintPath>$(Bin)\Intel.Wsman.Scripting.dll</HintPath>
|
|
<HintPath Condition="Exists('$(Bin)\CompiledLibraries')">$(Bin)\CompiledLibraries\Intel.Wsman.Scripting.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project> |