This commit is contained in:
DJGosnell 2022-04-13 11:10:02 -04:00
Родитель 49da61436e
Коммит 5d4a87bf2c
2 изменённых файлов: 13 добавлений и 2 удалений

4
.github/workflows/dotnet.yml поставляемый
Просмотреть файл

@ -53,7 +53,9 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
name: "DtronixPdf ${{ steps.tagName.outputs.tag }} Released"
files: artifacts/*.nupkg
files: |
artifacts/*.nupkg
artifacts/*.snupkg
- name: Push Nuget packages
if: startsWith(github.ref, 'refs/tags/')

Просмотреть файл

@ -3,8 +3,17 @@
<TargetFramework>net5.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.1</Version>
<Version>1.0.1.1</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>DtronixPdf.Tests</_Parameter1>