Merge pull request #1603 from lzybkr/csproj_tweak

csproj fixes - add reference and fix assembly name so InternalsVisibl…
This commit is contained in:
Sergei Vorobev 2016-08-02 11:25:38 -07:00 committed by GitHub
commit d8afbcecbb
3 changed files with 20 additions and 2 deletions

View file

@ -6,7 +6,7 @@
<ProjectGuid>{FE0D19AF-A6BE-4A68-BC1D-F52F3A17E2A0}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ClassLibrary</AssemblyName>
<AssemblyName>Microsoft.PowerShell.Commands.Management</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
@ -158,6 +158,12 @@
<EmbeddedResource Include="resources\WebServiceResources.resx" />
<EmbeddedResource Include="resources\WmiResources.resx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj">
<Project>{1256d32a-be8d-4efe-9769-57be5663209e}</Project>
<Name>System.Management.Automation</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />

View file

@ -6,7 +6,7 @@
<ProjectGuid>{5B134412-7EAF-4D60-9EED-CD200BDC5153}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ClassLibrary</AssemblyName>
<AssemblyName>Microsoft.PowerShell.Commands.Utility</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
@ -243,6 +243,12 @@
<EmbeddedResource Include="resources\WriteErrorStrings.resx" />
<EmbeddedResource Include="resources\WriteProgressResourceStrings.resx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj">
<Project>{1256d32a-be8d-4efe-9769-57be5663209e}</Project>
<Name>System.Management.Automation</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />

View file

@ -27,10 +27,16 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Management.Infrastructure" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Management" />
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Transactions" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>