/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/powershell-unix/powershell-unix.csproj
50 строк
2 KB
Aditya Patwardhan
DSC v3 resource for Powershell Profile (#26157)
13 ноя 2025, 20:56
Не верифицирован
13 ноя 2025, 20:56
5715d33
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\PowerShell.Common.props"/> <PropertyGroup> <Description>PowerShell top-level project with .NET CLI host</Description> <AssemblyName>pwsh</AssemblyName> <OutputType>Exe</OutputType> <TieredCompilation>true</TieredCompilation> <TieredCompilationQuickJit>true</TieredCompilationQuickJit> <TieredCompilationQuickJitForLoops>true</TieredCompilationQuickJitForLoops> <RuntimeIdentifiers>linux-x64;osx-x64;</RuntimeIdentifiers> </PropertyGroup> <ItemGroup> <Compile Include="..\powershell\Program.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> <Content Include="..\Modules\Unix\**\*;..\Modules\Shared\**\*" > <Link>Modules\%(RecursiveDir)\%(FileName)%(Extension)</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> <Content Include="..\Schemas\PSMaml\*"> <Link>Schemas\PSMaml\%(FileName)%(Extension)</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> <Content Include="..\..\LICENSE.txt"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> <Content Include="..\..\ThirdPartyNotices.txt"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> <Content Include="..\..\assets\default.help.txt"> <Link>en-US\default.help.txt</Link> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> <Content Include="..\..\dsc\pwsh.profile.dsc.resource.json;..\..\dsc\pwsh.profile.resource.ps1"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </Content> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Microsoft.PowerShell.SDK\Microsoft.PowerShell.SDK.csproj" /> </ItemGroup> </Project>