-
Notifications
You must be signed in to change notification settings - Fork 757
Expand file tree< 6881 /span>
/
Copy pathFastSerialization.csproj
More file actions
49 lines (41 loc) · 1.76 KB
/
FastSerialization.csproj
File metadata and controls
49 lines (41 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<RootNamespace>Microsoft.Diagnostics.FastSerialization</RootNamespace>
<AssemblyName>Microsoft.Diagnostics.FastSerialization</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Company>Microsoft</Company>
<Description>Serialization library for TraceEvent.</Description>
<Copyright>Copyright © Microsoft 2010</Copyright>
<Version>$(FastSerializationVersion)</Version>
<FileVersion>$(FastSerializationVersion)</FileVersion>
<InformationalVersion>$(FastSerializationVersion)</InformationalVersion>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);GROWABLEARRAY_PUBLIC;STREAMREADER_PUBLIC;FASTSERIALIZATION_PUBLIC</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<HighEntropyVA>true</HighEntropyVA>
</PropertyGroup>
<ItemGroup>
<!-- *** SourceLink Support *** -->
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- ******************* Signing Support *********************** -->
<ItemGroup>
<FilesToSign Include="$(TargetPath)">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<PackageReference Include="MicroBuild.Core" />
</ItemGroup>
<!-- .NET Strong Name Signing -->
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<PublicSign Condition="'$(SIGNING_BUILD)'!= 'true'">true</PublicSign>
<DelaySign Condition="'$(SIGNING_BUILD)'== 'true'">true</DelaySign>
<AssemblyOriginatorKeyFile>..\MSFT.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
</Project>