PowerShell/src/Microsoft.WSMan.Management/Microsoft.WSMan.Management.csproj
2021-02-08 17:13:33 -08:00

25 lines
923 B
XML

<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="..\..\PowerShell.Common.props" />
<PropertyGroup>
<Description>PowerShell's Microsoft.WSMan.Management project</Description>
<NoWarn>$(NoWarn);CA1416</NoWarn>
<AssemblyName>Microsoft.WSMan.Management</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
<ProjectReference Include="..\Microsoft.WSMan.Runtime\Microsoft.WSMan.Runtime.csproj" />
<!-- the following package(s) are from https://github.com/dotnet/corefx -->
<PackageReference Include="System.ServiceProcess.ServiceController" Version="6.0.0-preview.1.21102.12" />
</ItemGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);CORECLR</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="WsManSnapin.cs" />
</ItemGroup>
</Project>