Skip to content

Commit

Permalink
Fix a few packaging issues (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
twsouthwick committed Jul 10, 2020
1 parent d4a5308 commit 3ce3123
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Version 2.11.2

### Fixed
- Fixed broken source link (#749)
- Ensured compilation is deterministic (#749)
- Removed extra file in NuGet package (#749)

## Version 2.11.1 - 2020-07-10

### Fixed
Expand Down
8 changes: 8 additions & 0 deletions build/sign.yml
Expand Up @@ -55,6 +55,14 @@ steps:
}
]
- task: PowerShell@2
displayName: 'Remove code sign summary'
name: removeSummary
inputs:
targetType: 'inline'
script: |
rm $(Pipeline.Workspace)/$(Version)/CodeSignSummary*
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Pipeline.Workspace)/$(Version)'
Expand Down
2 changes: 1 addition & 1 deletion global.json
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "3.1.100",
"version": "3.1.301",
"rollForward": "latestMajor"
}
}
14 changes: 13 additions & 1 deletion src/DocumentFormat.OpenXml/DocumentFormat.OpenXml.csproj
Expand Up @@ -7,8 +7,16 @@
<TargetFrameworks>$(ProductTargetFrameworks)</TargetFrameworks>
<NoWarn>$(NoWarn);3003</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
Expand All @@ -19,6 +27,10 @@
<None Include="**\*.md" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>

<Choose>
<When Condition=" '$(TargetFramework)' == 'net35' OR '$(TargetFramework)' == 'net40' ">
<PropertyGroup>
Expand Down

0 comments on commit 3ce3123

Please sign in to comment.