Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/PowerShell/PowerShell.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Lee <slee@microsoft.com>2019-05-21 08:43:51 +0300
committerDongbo Wang <dongbow@microsoft.com>2019-05-21 08:43:51 +0300
commit29e21470d9e0a6edd163bcff9b1574ccf557b18f (patch)
tree1447812ed9aeceaed3e3ec353df35aa269675f0f /PowerShell.Common.props
parentafa76dec2374df8dadc1629bd7050c5db11c0694 (diff)
Port PowerShell to .NET Core 3.0 (#9597)
Diffstat (limited to 'PowerShell.Common.props')
-rw-r--r--PowerShell.Common.props7
1 files changed, 4 insertions, 3 deletions
diff --git a/PowerShell.Common.props b/PowerShell.Common.props
index 81224a9a87..f8c90bf678 100644
--- a/PowerShell.Common.props
+++ b/PowerShell.Common.props
@@ -62,6 +62,8 @@
Tracking Issue https://github.com/dotnet/sdk/issues/1557
-->
<PackageVersion>$(PSCoreBuildVersion)</PackageVersion>
+ <ApplicationIcon Condition="$(ProductVersion.Contains('preview'))">..\..\assets\Powershell_av_colors.ico</ApplicationIcon>
+ <ApplicationIcon Condition="!$(ProductVersion.Contains('preview'))">..\..\assets\Powershell_black.ico</ApplicationIcon>
</PropertyGroup>
@@ -93,9 +95,8 @@
<Company>Microsoft Corporation</Company>
<Copyright>(c) Microsoft Corporation. All rights reserved.</Copyright>
- <TargetFramework>netcoreapp2.1</TargetFramework>
- <RuntimeFrameworkVersion>2.1.8</RuntimeFrameworkVersion>
- <LangVersion>Latest</LangVersion>
+ <TargetFramework>netcoreapp3.0</TargetFramework>
+ <LangVersion>8.0</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>