Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Hendrix <jhendrix@microsoft.com>2016-03-17 01:31:49 +0300
committerJoel Hendrix <jhendrix@microsoft.com>2016-03-17 01:31:49 +0300
commit3687db76f7646f1cdacfabbb697d60cdb5296931 (patch)
treeeda5bfd32a3c7ae7767b0ee167ce46c777f3ad92 /build.proj
parent31f5bf779ace12ccd317d3fc33a2150748674a85 (diff)
Move the signing phase to its own build project.
In order to take advantage of batch signing we must submit all binaries for signing in one group. To make this happen I have moved the signing task into its own build project that happens after the binaries have been built.
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.proj b/build.proj
index ed1c706867..a050ac082a 100644
--- a/build.proj
+++ b/build.proj
@@ -16,6 +16,8 @@
<!-- For the root traversal default filter the OSGroup to the OSEnvironment which is the OS we are running on -->
<FilterToOSGroup Condition="'$(_OriginalOSGroup)' == ''">$(OSEnvironment)</FilterToOSGroup>
</Project>
+ <!-- signing must happen before packaging -->
+ <Project Include="src\sign.builds" />
<Project Include="src\packages.builds">
<!-- When we do a traversal build we build all libraries prior to building packages -->
<AdditionalProperties>BuildPackageLibraryReferences=false</AdditionalProperties>