Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
publish everything from the staging directory to artifacts (#943)
Browse files Browse the repository at this point in the history
* publish everything from the staging directory to artifacts, including binaries, symbols and zip.

* Signing ApiPort binaries
  • Loading branch information
Lxiamail authored Oct 31, 2020
1 parent ac18673 commit 4fd440c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 13 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ steps:
arguments: '--configuration $(BuildConfiguration) -f netcoreapp3.1 --output $(Build.StagingDirectory) --no-build'
zipAfterPublish: True

- publish: $(Build.StagingDirectory)\drop
displayName: Publish drop
- publish: $(Build.StagingDirectory)
displayName: Publish
artifact: drop-$(Agent.JobName)

- publish: bin/$(BuildConfiguration)/ApiPort.Vsix/ApiPort.vsix
Expand Down
5 changes: 0 additions & 5 deletions src/ApiPort/ApiPort/ApiPort.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>

<PropertyGroup>
<!-- Projects default to being signed, but Microsoft.Configuration.* assemblies are not signed -->
<SignAssembly>false</SignAssembly>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Autofac" Version="4.6.2" />
<PackageReference Include="Autofac.Configuration" Version="4.1.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/ApiPort/ApiPort/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("ApiPort.Tests")]
[assembly: InternalsVisibleTo("ApiPort.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100e582b4d26e58c079fe92f419c429dfad3353fd55014becf8c0b0ba92b1b577a01f3012ce5d7a2bce9a3dd5641a0620793f345107bb1fdfe34289283a8929fa5c6d8b28da13ca9545c25b9460e341983bc6fe0fff8420e457e053aa3ed8def02dac7bc9f54bf4a0adc57683730686f3df167d45535ad5a0bd2a49c449b16620c5")]
5 changes: 0 additions & 5 deletions tests/ApiPort/ApiPort.Tests/ApiPort.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>

<PropertyGroup>
<!-- Projects default to being signed, but ApiPort cannot be signed at the moment -->
<SignAssembly>false</SignAssembly>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="15.5.0" />
Expand Down

0 comments on commit 4fd440c

Please sign in to comment.