Skip to content

Commit

Permalink
Merge pull request #897 from vancem/HeapDumpDLLMakeProjUniform
Browse files Browse the repository at this point in the history
Minor reorganization of HeapDumpDLL.csproj to make uniform with others
  • Loading branch information
vancem committed Mar 21, 2019
2 parents d940a77 + 0816ec5 commit d0c46e6
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions src/HeapDump/HeapDumpDLL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFrameworks>net45</TargetFrameworks>
<RootNamespace>Microsoft.Diagnostics.HeapDump</RootNamespace>
<AssemblyName>Microsoft.Diagnostics.HeapDump</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<Company>Microsoft</Company>
Expand All @@ -21,15 +22,10 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
</ItemGroup>

<!-- ******************* Signing Support *********************** -->
<ItemGroup>
<FilesToSign Include="$(TargetPath)">
<Authenticode>Microsoft</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<PackageReference Include="MicroBuild.Core" Version="0.2.0" />
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="$(MicrosoftDiagnosticsRuntimeVersion)" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FastSerialization\FastSerialization.csproj" />
<ProjectReference Include="..\MemoryGraph\MemoryGraph.csproj" />
Expand All @@ -48,16 +44,19 @@
<Compile Include="..\ETWHeapDump\DotNetHeapDumpGraphReader.cs" />
</ItemGroup>

<!-- ******************* Signing Support *********************** -->
<ItemGroup>
<FilesToSign Include="$(TargetPath)">
<Authenticode>Microsoft</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<PackageReference Include="MicroBuild.Core" Version="0.2.0" />
</ItemGroup>

<!-- .NET Strong Name Signing -->
<PropertyGroup>
<SignAssembly Condition="'$(SIGNING_BUILD)'!= ''">true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>..\MSFT.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
</Project>
</Project>

0 comments on commit d0c46e6

Please sign in to comment.