forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.PowerShell.Commands.Utility.csproj
63 lines (57 loc) · 3.5 KB
/
Microsoft.PowerShell.Commands.Utility.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="..\..\PowerShell.Common.props" />
<PropertyGroup>
<Description>PowerShell Core's Microsoft.PowerShell.Commands.Utility project</Description>
<NoWarn>$(NoWarn);CS1570</NoWarn>
<AssemblyName>Microsoft.PowerShell.Commands.Utility</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" />
<ProjectReference Include="..\Microsoft.PowerShell.MarkdownRender\Microsoft.PowerShell.MarkdownRender.csproj" />
</ItemGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);CORECLR</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\ColumnInfo.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\ExpressionColumnInfo.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\HeaderInfo.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\OriginalColumnInfo.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\OutGridViewCommand.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\OutWindowProxy.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\ScalarTypeColumnInfo.cs" />
<Compile Remove="commands\utility\FormatAndOutput\OutGridView\TableView.cs" />
<Compile Remove="commands\utility\FormatAndOutput\out-printer\PrinterLineOutput.cs" />
<Compile Remove="commands\utility\FormatAndOutput\out-printer\out-printer.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommand.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandCommandInfo.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandModuleInfo.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandParameterInfo.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandParameterSetInfo.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandParameterType.cs" />
<Compile Remove="commands\utility\ShowCommand\ShowCommandProxy.cs" />
<Compile Remove="commands\utility\update-list.cs" />
<Compile Remove="singleshell\installer\MshUtilityMshSnapin.cs" />
<Compile Remove="gen\FormatAndOut_out_gridview.cs" />
<Compile Remove="gen\UtilityMshSnapinResources.cs" />
<Compile Remove="gen\OutPrinterDisplayStrings.cs" />
<Compile Remove="gen\UpdateListStrings.cs" />
<Compile Remove="gen\ConvertFromStringResources.cs" />
<Compile Remove="gen\ConvertStringResources.cs" />
<Compile Remove="gen\FlashExtractStrings.cs" />
<Compile Remove="gen\ImmutableStrings.cs" />
<EmbeddedResource Remove="resources\FormatAndOut_out_gridview.resx" />
<EmbeddedResource Remove="resources\UtilityMshSnapinResources.resx" />
<EmbeddedResource Remove="resources\OutPrinterDisplayStrings.resx" />
<EmbeddedResource Remove="resources\UpdateListStrings.resx" />
<EmbeddedResource Remove="resources\ConvertFromStringResources.resx" />
<EmbeddedResource Remove="resources\ConvertStringResources.resx" />
<EmbeddedResource Remove="resources\FlashExtractStrings.resx" />
<EmbeddedResource Remove="resources\ImmutableStrings.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.0.0" />
<PackageReference Include="System.Threading.AccessControl" Version="4.5.0" />
<PackageReference Include="NJsonSchema" Version="9.13.28" />
</ItemGroup>
</Project>