Skip to content

Commit 04aa29a

Browse files
authored
build: create XML documentation file on build and copy it to both binary output directories closes #441 (#583)
1 parent 729d68d commit 04aa29a

File tree

3 files changed

+18
-6501
lines changed

3 files changed

+18
-6501
lines changed

src/Appium.Net/Appium.Net.csproj

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,28 @@
2626
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2727
</PropertyGroup>
2828

29+
<PropertyGroup>
30+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
31+
</PropertyGroup>
32+
33+
<PropertyGroup>
34+
<LangVersion>8.0</LangVersion>
35+
</PropertyGroup>
36+
37+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
38+
<NoWarn>1701;1702;1591</NoWarn>
39+
</PropertyGroup>
40+
2941
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
30-
<DocumentationFile>Appium.Net.xml</DocumentationFile>
42+
<NoWarn>1701;1702;1591</NoWarn>
3143
</PropertyGroup>
32-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
33-
<DocumentationFile>Appium.Net.xml</DocumentationFile>
44+
45+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net48|AnyCPU'">
46+
<NoWarn>1701;1702;1591</NoWarn>
3447
</PropertyGroup>
3548

36-
<PropertyGroup>
37-
<LangVersion>8.0</LangVersion>
49+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
50+
<NoWarn>1701;1702;1591</NoWarn>
3851
</PropertyGroup>
3952

4053
<ItemGroup>

0 commit comments

Comments
 (0)