-
Notifications
You must be signed in to change notification settings - Fork 320
Target pwsh LTS .NET #5055
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Target pwsh LTS .NET #5055
Changes from all commits
52971d1
7d99244
704e5a6
15540d6
d45a4f4
6eca5aa
9c1f75d
15b0c0f
cb3c83e
bb68f50
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,23 +5,26 @@ | |
| <RootNamespace>Microsoft.PowerShell.PSReadLine</RootNamespace> | ||
| <AssemblyName>Microsoft.PowerShell.PSReadLine</AssemblyName> | ||
| <NoWarn>$(NoWarn);CA1416</NoWarn> | ||
| <AssemblyVersion>2.4.5.0</AssemblyVersion> | ||
| <FileVersion>2.4.5</FileVersion> | ||
| <InformationalVersion>2.4.5</InformationalVersion> | ||
| <AssemblyVersion>3.0.0.0</AssemblyVersion> | ||
| <FileVersion>3.0.0</FileVersion> | ||
| <InformationalVersion>3.0.0</InformationalVersion> | ||
| <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> | ||
| <TargetFramework>netstandard2.0</TargetFramework> | ||
| <TargetFramework>net8.0</TargetFramework> | ||
| <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> | ||
| <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> | ||
| <LangVersion>9.0</LangVersion> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="PowerShellStandard.Library" version="5.1.0" /> | ||
| <PackageReference Include="Microsoft.CSharp" version="4.7.0" /> | ||
| <PackageReference Include="Microsoft.PowerShell.Pager" version="1.0.0" /> | ||
| <ProjectReference Include="..\Polyfill\Polyfill.csproj" /> | ||
| <PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.13" /> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think it's needed to reference the sdk package. |
||
| <PackageReference Include="System.Management.Automation" Version="7.4.13"> | ||
| <ExcludeAssets>contentFiles</ExcludeAssets> | ||
| <PrivateAssets>All</PrivateAssets> | ||
| </PackageReference> | ||
| <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this still needed after targeting net8.0? |
||
| <PackageReference Include="Microsoft.PowerShell.Pager" Version="1.0.0" /> | ||
| </ItemGroup> | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Extra space |
||
| <ItemGroup> | ||
| <None Include="PSReadLine.psd1" CopyToOutputDirectory="PreserveNewest" /> | ||
| <None Include="PSReadLine.psm1" CopyToOutputDirectory="PreserveNewest" /> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,4 +8,4 @@ function PSConsoleHostReadLine | |
| $lastRunStatus = $? | ||
| Microsoft.PowerShell.Core\Set-StrictMode -Off | ||
| [Microsoft.PowerShell.PSConsoleReadLine]::ReadLine($host.Runspace, $ExecutionContext, $lastRunStatus) | ||
| } | ||
| } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please revert this change? I think you deleted the ending newline of this file. |
||
Uh oh!
There was an error while loading. Please reload this page.