Skip to content

Commit d48a2d5

Browse files
committed
Remove netstandard2.0 from build options (PowerShell#1835)
1 parent a6e71fa commit d48a2d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ param (
2323
[ValidateSet("Debug", "Release")]
2424
[string] $BuildConfiguration = "Debug",
2525

26-
[ValidateSet("netstandard2.0", "net472")]
26+
[ValidateSet("net472")]
2727
[string] $BuildFramework = "net472"
2828
)
2929

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AssemblyVersion>1.1.0.1</AssemblyVersion>
99
<FileVersion>1.1.0.1</FileVersion>
1010
<InformationalVersion>1.1.0.1</InformationalVersion>
11-
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
11+
<TargetFrameworks>net472</TargetFrameworks>
1212
<LangVersion>9.0</LangVersion>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
1414
</PropertyGroup>

0 commit comments

Comments
 (0)