Skip to content
This repository was archived by the owner on Jan 7, 2021. It is now read-only.

Commit 3c5dd5d

Browse files
committed
Fixed packing documentation file in nuget packages.
1 parent 6f9a540 commit 3c5dd5d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

XmlAbstraction/XmlAbstraction.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;netcoreapp2.0;netcoreapp2.1;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472</TargetFrameworks>
5+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
56
<RootNamespace>XmlAbstraction</RootNamespace>
67
<AssemblyName>XmlAbstraction</AssemblyName>
78
<LangVersion>latest</LangVersion>
8-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
910
<Authors>AraHaan</Authors>
1011
<Company />
11-
<Version>1.1.0</Version>
12+
<Version>1.1.1</Version>
1213
<Description>A library that contains a System.Xml and System.Xml.Linq abstraction class.</Description>
1314
<Copyright>Copyright 2018</Copyright>
1415
<PackageTags>XML</PackageTags>
1516
<RepositoryType>git</RepositoryType>
1617
<RepositoryUrl>https://github.com/AraHaan/XmlAbstraction/</RepositoryUrl>
1718
<PackageProjectUrl>https://github.com/AraHaan/XmlAbstraction/</PackageProjectUrl>
1819
<PackageLicenseUrl>https://github.com/AraHaan/XmlAbstraction/blob/master/LICENSE</PackageLicenseUrl>
19-
<PackageReleaseNotes>A breaking change removing IDisposable from XmlObject.</PackageReleaseNotes>
20+
<PackageReleaseNotes>Fixed issue causing documentation files to not get included in the package.</PackageReleaseNotes>
2021
<PublishDocumentationFile>true</PublishDocumentationFile>
2122
</PropertyGroup>
2223

@@ -99,7 +100,6 @@
99100

100101
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
101102
<DefineConstants>DEBUG;TRACE</DefineConstants>
102-
<DocumentationFile>bin\Any CPU\Debug\XmlAbstraction.xml</DocumentationFile>
103103
<OutputPath>bin\Any CPU\Debug\</OutputPath>
104104
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
105105
<WarningsAsErrors>NU1605</WarningsAsErrors>
@@ -112,7 +112,6 @@
112112
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
113113
<WarningsAsErrors />
114114
<OutputPath>bin\Any CPU\Release\</OutputPath>
115-
<DocumentationFile>bin\Any CPU\Release\$(TargetFramework)\XmlAbstraction.xml</DocumentationFile>
116115
<ErrorReport>send</ErrorReport>
117116
<DebugType>full</DebugType>
118117
<DebugSymbols>true</DebugSymbols>

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.1.0.0-alpha{build}
1+
version: 1.1.1.0-alpha{build}
22
branches:
33
only:
44
- master
@@ -12,7 +12,8 @@ build:
1212
project: XmlAbstraction.sln
1313
publish_nuget: true
1414
publish_nuget_symbols: true
15-
include_nuget_references: true
15+
# this warns anyway for netcore and netstandard projects.
16+
# include_nuget_references: true
1617
parallel: true
1718
verbosity: minimal
1819
test_script:

0 commit comments

Comments
 (0)