54 lines
2.2 KiB
XML

<?xml version='1.0' encoding='utf-8'?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>HLAPI</RootNamespace>
<AssemblyName>HLAPI</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\HLAPI.XML</DocumentationFile>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>bin\Release\HLAPI.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\SKUSupportedFeatures.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.WebEncoders" Version="6.0.8" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="7.0.4" />
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
<PackageReference Include="System.Security.Principal.Windows" Version="5.0.0" />
<PackageReference Include="System.Management" Version="7.0.2" />
</ItemGroup>
<PropertyGroup Label="Kit">
<Kit>$([System.Convert]::ToBoolean(true))</Kit>
<Bin />
<Bin Condition="Exists('..\..\..\Bin')">..\..\..\Bin</Bin>
</PropertyGroup>
<ItemGroup Condition="$(Kit)" Label="Kit References">
<Reference Include="DotNetWSManClient">
<HintPath>$(Bin)\DotNetWSManClient.dll</HintPath>
</Reference>
<Reference Include="Intel.Wsman.Scripting">
<HintPath>$(Bin)\Intel.Wsman.Scripting.dll</HintPath>
</Reference>
<Reference Include="IWSManClient">
<HintPath>$(Bin)\IWSManClient.dll</HintPath>
</Reference>
<Reference Include="WebStorage">
<HintPath>$(Bin)\WebStorage.dll</HintPath>
</Reference>
<Compile Include="..\..\Common\SecureStringExtensions.cs" />
</ItemGroup>
</Project>