/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.6.0-preview.5
src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj
43 строки
3 KB
PowerShell Team Bot
Move PowerShell build to use .NET SDK 10.0.100-rc.1 (#26027)
11 сен 2025, 00:55
Не верифицирован
11 сен 2025, 00:55
a1b4176
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0"> <Import Project="..\..\PowerShell.Common.props" /> <PropertyGroup> <Description>PowerShell SDK metapackage</Description> <PackageId>Microsoft.PowerShell.SDK</PackageId> <IncludeBuildOutput>false</IncludeBuildOutput> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\Microsoft.PowerShell.Commands.Management\Microsoft.PowerShell.Commands.Management.csproj" /> <ProjectReference Include="..\Microsoft.PowerShell.Commands.Utility\Microsoft.PowerShell.Commands.Utility.csproj" /> <ProjectReference Include="..\Microsoft.PowerShell.ConsoleHost\Microsoft.PowerShell.ConsoleHost.csproj" /> <ProjectReference Include="..\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.csproj" /> <ProjectReference Include="..\System.Management.Automation\System.Management.Automation.csproj" /> </ItemGroup> <ItemGroup> <!-- This section is to force the version of non-direct dependencies --> <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.0-rc.1.25451.107" /> <PackageReference Include="Microsoft.Extensions.ObjectPool" Version="10.0.0-rc.1.25451.107" /> <!-- the following package(s) are from https://github.com/dotnet/fxdac --> <PackageReference Include="System.Data.SqlClient" Version="4.9.0" /> <!-- the following package(s) are from https://github.com/dotnet/corefx --> <PackageReference Include="System.IO.Packaging" Version="10.0.0-rc.1.25451.107" /> <PackageReference Include="System.Net.Http.WinHttpHandler" Version="10.0.0-rc.1.25451.107" /> <!-- Removing due to NU1510 --> <!-- PackageReference Include="System.Text.Encodings.Web" Version="9.0.2" /--> <!-- the following package(s) are from https://github.com/dotnet/wcf they are pinned to the version 4.10.x due to a breaking change in newer versions. see https://github.com/PowerShell/PowerShell/issues/19238 for details. --> <PackageReference Include="System.ServiceModel.Duplex" Version="4.10.3" NoWarn="NU1605" /> <PackageReference Include="System.ServiceModel.Http" Version="4.10.3" NoWarn="NU1605" /> <PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.3" NoWarn="NU1605" /> <PackageReference Include="System.ServiceModel.Primitives" Version="4.10.3" NoWarn="NU1605" /> <PackageReference Include="System.ServiceModel.Security" Version="4.10.3" NoWarn="NU1605" /> <PackageReference Include="System.Private.ServiceModel" Version="4.10.3" NoWarn="NU1605" /> <!-- the source could not be found for the following package(s) --> <PackageReference Include="Microsoft.Windows.Compatibility" Version="10.0.0-rc.1.25451.107" /> </ItemGroup> </Project>