forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMicrosoft.PowerShell.NamedPipeConnection.csproj
More file actions
37 lines (35 loc) · 2.15 KB
/
Microsoft.PowerShell.NamedPipeConnection.csproj
File metadata and controls
37 lines (35 loc) · 2.15 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>Microsoft.PowerShell.NamedPipeConnection</RootNamespace>
<AssemblyName>Microsoft.PowerShell.NamedPipeConnection</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<InformationalVersion>1.0.0</InformationalVersion>
<TargetFrameworks>net9.0</TargetFrameworks>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<LangVersion>11.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
<PackageReference Include="Microsoft.PowerShell.CoreCLR.Eventing" Version="7.5.0-preview.5" />
<PackageReference Include="Microsoft.PowerShell.Native" Version="7.4.0" />
<PackageReference Include="Microsoft.Security.Extensions" Version="1.3.0" />
<PackageReference Include="Microsoft.Win32.Registry.AccessControl" Version="9.0.1" />
<PackageReference Include="System.CodeDom" Version="9.0.1" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.1" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.1" />
<PackageReference Include="System.Diagnostics.EventLog" Version="9.0.1" />
<PackageReference Include="System.DirectoryServices" Version="9.0.1" />
<PackageReference Include="System.Management" Version="9.0.1" />
<PackageReference Include="System.Management.Automation" Version="7.5.0-preview.5" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="9.0.1" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.1" />
<PackageReference Include="System.Security.Permissions" Version="9.0.1" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.1" />
<PackageReference Include="System.Windows.Extensions" Version="9.0.1" />
</ItemGroup>
</Project>