Skip to content

Commit 29645e5

Browse files
committed
Improve documents
1 parent 7f774ac commit 29645e5

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ body:
5454
- ".NET Framework 4.8.x"
5555
- ".NET Standard 1.x"
5656
- ".NET Standard 2.x"
57+
- ".NET Core 5.0"
5758
- ".NET Core App 1.x"
5859
- ".NET Core App 2.x"
5960
- ".NET Core App 3.x"
@@ -89,6 +90,19 @@ body:
8990
- "Visual Studio 2015"
9091
- "Visual Studio 2012"
9192
- "Visual Studio 2010"
93+
- "Visual Studio Code"
94+
- "MonoDevelop 7.x"
95+
- "MonoDevelop 6.x"
96+
- "MonoDevelop 5.x"
97+
- "MonoDevelop 4.x"
98+
- "MonoDevelop 3.x"
99+
- "Rider 2023"
100+
- "Rider 2022"
101+
- "Rider 2021"
102+
- "Rider 2020"
103+
- "Rider 2019"
104+
- "Rider 2018"
105+
- "Rider 2017"
92106
- "Other"
93107
- type: textarea
94108
attributes:

AdvancedSharpAdbClient/AdvancedSharpAdbClient.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<FullTargets>True</FullTargets>
4+
<FullTargets>False</FullTargets>
55
<NoWarn>CA2254</NoWarn>
66
</PropertyGroup>
77

8-
<PropertyGroup Condition="'$(FullTargets)' == 'true'">
8+
<PropertyGroup Condition="'$(FullTargets)' == 'True'">
99
<NoWarn>NU1603;$(NoWarn)</NoWarn>
1010
<TargetFrameworks>net3.5-client;net4.0-client;net4.5.2;net4.6.2;net4.7.2;net4.8.1;net6.0;net8.0;netcore50;netcoreapp2.1;netcoreapp3.1;netstandard1.3;netstandard2.0;netstandard2.1;uap10.0</TargetFrameworks>
1111
</PropertyGroup>
1212

13-
<PropertyGroup Condition="'$(FullTargets)' != 'true'">
14-
<TargetFramework Condition="'$(GITHUB_ACTIONS)' == 'true'">netstandard2.0</TargetFramework>
15-
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'true' And '$(IsWindows)'">net3.5-client;net4.5.2;net4.8.1;net6.0;net8.0;netcoreapp3.1;netstandard1.3;netstandard2.0</TargetFrameworks>
16-
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'true' And !'$(IsWindows)'">net6.0;net8.0;netcoreapp3.1;netstandard1.3;netstandard2.0</TargetFrameworks>
13+
<PropertyGroup Condition="'$(FullTargets)' != 'True'">
14+
<TargetFramework Condition="'$(GITHUB_ACTIONS)' == 'True'">netstandard2.0</TargetFramework>
15+
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True' And '$(IsWindows)'">net3.5-client;net4.5.2;net4.8.1;net6.0;net8.0;netcoreapp3.1;netstandard1.3;netstandard2.0</TargetFrameworks>
16+
<TargetFrameworks Condition="'$(GITHUB_ACTIONS)' != 'True' And !'$(IsWindows)'">net6.0;net8.0;netcoreapp3.1;netstandard1.3;netstandard2.0</TargetFrameworks>
1717
</PropertyGroup>
1818

1919
<ItemGroup>

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<PropertyGroup>
3131
<FullTargets Condition="'$(FullTargets)' == ''">False</FullTargets>
3232
<IsWindows Condition="'$(IsWindows)' == ''">False</IsWindows>
33-
<IsWindows Condition="$([MSBuild]::IsOSPlatform('Windows')) == 'true' OR '$(Platform)' == 'Windows NT'">True</IsWindows>
33+
<IsWindows Condition="$([MSBuild]::IsOSPlatform('Windows')) == 'True' OR '$(Platform)' == 'Windows NT'">True</IsWindows>
3434
<IsTestProject Condition="'$(IsTestProject)' == ''">$(MSBuildProjectName.Contains('.Test'))</IsTestProject>
3535
</PropertyGroup>
3636

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ Added important features.
1919
- .NET Framework 4.7.2
2020
- .NET Framework 4.8.1
2121
- .NET Standard 1.3 (Not fully supported)
22-
- .NET Standard 2.0 (Support UWP if you don't use unsupport api like Process)
22+
- .NET Standard 2.0 (Support UWP if you don't use unsupported api like Process)
23+
- .NET Standard 2.1
24+
- .NET Core 5.0 (Support UAP 10.0 and UAP 10.0.15138.0)
25+
- .NET Core App 2.1
2326
- .NET Core App 3.1
2427
- .NET 6.0
2528
- .NET 8.0

0 commit comments

Comments
 (0)