|
13 | 13 | <Description>TraceEvent library.</Description>
|
14 | 14 | <Company>Microsoft</Company>
|
15 | 15 | <Copyright>Copyright © Microsoft 2010</Copyright>
|
16 |
| - <Version>2.0.2.0</Version> |
17 |
| - <FileVersion>2.0.2.0</FileVersion> |
18 |
| - <InformationalVersion>2.0.2-dev</InformationalVersion> |
| 16 | + <Version>2.0.2</Version> |
| 17 | + <FileVersion>2.0.2</FileVersion> |
| 18 | + <InformationalVersion>2.0.2</InformationalVersion> |
19 | 19 | <NeutralLanguage>en</NeutralLanguage>
|
20 | 20 |
|
21 | 21 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
24 | 24 | <GenerateNuspecDependsOn>$(GenerateNuspecDependsOn);SetNuspecProperties</GenerateNuspecDependsOn>
|
25 | 25 | </PropertyGroup>
|
26 | 26 |
|
27 |
| - <ItemGroup> |
28 |
| - <FilesToSign Include="$(OutDir)\Microsoft.Diagnostics.Tracing.TraceEvent.dll"> |
29 |
| - <Authenticode>Microsoft</Authenticode> |
30 |
| - <StrongName>StrongName</StrongName> |
31 |
| - </FilesToSign> |
32 |
| - </ItemGroup> |
33 | 27 |
|
34 | 28 | <Target Name="SetNuspecProperties">
|
35 | 29 | <PropertyGroup>
|
|
40 | 34 | <PropertyGroup>
|
41 | 35 | <DefineConstants>$(DefineConstants);COMMAND_PUBLIC;PEFILE_PUBLIC;PERFVIEW</DefineConstants>
|
42 | 36 | <NoWarn>$(NoWarn),0649,0618</NoWarn>
|
43 |
| - |
44 |
| - <DefineConstants Condition="'$(SIGNING_BUILD)'!=''">$(DefineConstants);SIGNING_BUILD</DefineConstants> |
45 |
| - <SignAssembly Condition="'$(SIGNING_BUILD)'!= ''">true</SignAssembly> |
46 |
| - <AssemblyOriginatorKeyFile>..\MSFT.snk</AssemblyOriginatorKeyFile> |
47 |
| - <DelaySign>true</DelaySign> |
48 | 37 | </PropertyGroup>
|
49 | 38 |
|
50 | 39 | <!--
|
|
80 | 69 | </Choose>
|
81 | 70 |
|
82 | 71 | <ItemGroup>
|
83 |
| - <PackageReference Include="MicroBuild.Core" Version="0.2.0" /> |
84 | 72 | <PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent.SupportFiles" Version="$(MicrosoftDiagnosticsTracingTraceEventSupportFilesVersion)" />
|
85 | 73 | <PackageReference Include="System.Reflection.Metadata" Version="1.5.0" />
|
86 | 74 | </ItemGroup>
|
|
139 | 127 | <Visible>False</Visible>
|
140 | 128 | </None>
|
141 | 129 |
|
| 130 | + <!-- *********************************************************** --> |
142 | 131 | <!-- Copying thee managed binaries explicitly should not be needed because the
|
143 | 132 | dependency logic should just do it for us, but for some reason ths only
|
144 | 133 | works for the net45 target framework and not the netstandard1.6. We
|
|
161 | 150 | <None Include="Microsoft.Diagnostics.Tracing.TraceEvent.props" />
|
162 | 151 | </ItemGroup>
|
163 | 152 |
|
| 153 | + |
| 154 | + <!-- ******************* Signing Support *********************** --> |
| 155 | + <ItemGroup> |
| 156 | + <FilesToSign Include="$(TargetPath)"> |
| 157 | + <Authenticode>Microsoft</Authenticode> |
| 158 | + <StrongName>StrongName</StrongName> |
| 159 | + </FilesToSign> |
| 160 | + <PackageReference Include="MicroBuild.Core" Version="0.2.0" /> |
| 161 | + </ItemGroup> |
| 162 | + |
| 163 | + <!-- .NET Strong Name Signing --> |
| 164 | + <PropertyGroup> |
| 165 | + <DefineConstants Condition="'$(SIGNING_BUILD)'!=''">$(DefineConstants);SIGNING_BUILD</DefineConstants> |
| 166 | + <SignAssembly Condition="'$(SIGNING_BUILD)'!= ''">true</SignAssembly> |
| 167 | + <DelaySign>true</DelaySign> |
| 168 | + <AssemblyOriginatorKeyFile>..\MSFT.snk</AssemblyOriginatorKeyFile> |
| 169 | + </PropertyGroup> |
| 170 | + |
164 | 171 | </Project>
|
0 commit comments