Skip to content

Commit

Permalink
删除不必要的平台
Browse files Browse the repository at this point in the history
  • Loading branch information
wherewhere committed Jan 12, 2024
1 parent 7e38dab commit bea8de0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion EnchantsOrder/EnchantsOrder/Common/ValueTuple.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#if !NET47_OR_GREATER && !NETCOREAPP
#if !NET47_OR_GREATER && !NETCOREAPP && !NETSTANDARD2_0_OR_GREATER
using System.Runtime.InteropServices;

namespace System
Expand Down
9 changes: 4 additions & 5 deletions EnchantsOrder/EnchantsOrder/EnchantsOrder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@
<PropertyGroup Condition="'$(FullTargets)' == 'True'">
<NoWarn>NU1603;NU1901;NU1902</NoWarn>
<TargetFrameworks>net6.0;netstandard1.1;netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True'">$(TargetFrameworks);net8.0;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True' and '$(IsWindows)' == 'True'">$(TargetFrameworks);native;net2.0-client;net3.5-client;net4.0-client;net4.5.2;net4.6.2;net4.8.1;netcore50;sl3;sl5;uap10.0;wp7.0;wp8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True'">$(TargetFrameworks);netcoreapp2.1</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True' and '$(IsWindows)' == 'True'">$(TargetFrameworks);native;net2.0-client;net4.0-client;net4.7;netcore50;sl3;sl5;uap10.0;wp7.0;wp8.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(FullTargets)' != 'True'">
<TargetFrameworks>netstandard1.1;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True'">$(TargetFrameworks);net6.0;net8.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True' and '$(IsWindows)' == 'True'">$(TargetFrameworks);net2.0-client;net3.5-client;net4.5.2;net4.8.1</TargetFrameworks>
<TargetFrameworks>net6.0;netcoreapp2.1;netstandard1.1;netstandard2.0</TargetFrameworks>
<TargetFrameworks Condition="'$(IsWindows)' == 'True'">$(TargetFrameworks);net2.0-client;net4.7</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(FullTargets)' == 'True'
Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,14 @@ Get the best order for enchanting. Base on the [Python Version](https://github.c
- Silverlight 3
- Silverlight 5
- .NET Framework 2.0
- .NET Framework 3.5
- .NET Framework 4.0
- .NET Framework 4.5.2
- .NET Framework 4.6.2
- .NET Framework 4.8.1
- .NET Framework 4.7
- .NET Standard 1.1
- .NET Standard 2.0
- .NET Standard 2.1
- .NET Core 5.0
- .NET Core App 2.1
- .NET Core App 3.1
- .NET 6.0
- .NET 8.0

## Example

Expand Down

0 comments on commit bea8de0

Please sign in to comment.