Skip to content

Commit

Permalink
Fix XML documentation file generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonorossi committed Jan 22, 2018
1 parent 5afbe75 commit 5a9bcab
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
17 changes: 7 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@ _ReSharper*/

# Build output
build/
artifacts/
src/**/obj/
src/**/bin/
buildscripts/**/obj/
buildscripts/**/bin/
project.lock.json
/.dnx/
/.dotnet/
tools/**/obj/
tools/**/build/
bin/
obj/

# Unit test scratch file (for DictionaryAdapter tests) and test runner results
/out.xml
/NetCoreClrTestResults.xml
/DesktopClrTestResults.xml
1 change: 1 addition & 0 deletions buildscripts/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<BuildVersion>0.0.0</BuildVersion>
<BuildVersion Condition="'$(APPVEYOR_BUILD_VERSION)'!=''">$(APPVEYOR_BUILD_VERSION)</BuildVersion>
<BuildVersionMajor>$(BuildVersion.Split('.')[0])</BuildVersionMajor>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>

Expand Down
3 changes: 1 addition & 2 deletions src/Castle.Core/Castle.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\buildscripts\common.props"></Import>

Expand All @@ -19,7 +19,6 @@
<PublicSign Condition="'$(OS)'=='Unix'">true</PublicSign>
<FrameworkPathOverride Condition="'$(OS)'=='Unix'">$(NuGetPackageFolders)microsoft.targetingpack.netframework.v4.6.1\1.0.1\lib\net461\</FrameworkPathOverride>
<PackageTags>castle dynamicproxy dynamic proxy dynamicproxy2 dictionaryadapter emailsender</PackageTags>
<DocumentationFile>$(OutputPath)Castle.Core.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<PublicSign Condition="'$(OS)'=='Unix'">true</PublicSign>
<FrameworkPathOverride Condition="'$(OS)'=='Unix'">$(NuGetPackageFolders)microsoft.targetingpack.netframework.v4.6.1\1.0.1\lib\net461\</FrameworkPathOverride>
<PackageTags>castle logging NLog</PackageTags>
<DocumentationFile>$(OutputPath)Castle.Services.Logging.NLogIntegration.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<PublicSign Condition="'$(OS)'=='Unix'">true</PublicSign>
<FrameworkPathOverride Condition="'$(OS)'=='Unix'">$(NuGetPackageFolders)microsoft.targetingpack.netframework.v4.6.1\1.0.1\lib\net461\</FrameworkPathOverride>
<PackageTags>castle logging serilog</PackageTags>
<DocumentationFile>$(OutputPath)Castle.Services.Logging.SerilogIntegration.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<PublicSign Condition="'$(OS)'=='Unix'">true</PublicSign>
<FrameworkPathOverride Condition="'$(OS)'=='Unix'">$(NuGetPackageFolders)microsoft.targetingpack.netframework.v4.6.1\1.0.1\lib\net461\</FrameworkPathOverride>
<PackageTags>castle logging log4net</PackageTags>
<DocumentationFile>$(OutputPath)Castle.Services.Logging.Log4netIntegration.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net35'OR'$(TargetFramework)'=='net40'OR'$(TargetFramework)'=='net45'">
Expand Down

0 comments on commit 5a9bcab

Please sign in to comment.