-
Notifications
You must be signed in to change notification settings - Fork 758
Expand file tree
/
Copy pathFastSerialization.csproj
More file actions
56 lines (48 loc) · 2.33 KB
/
FastSerialization.csproj
File metadata and controls
56 lines (48 loc) · 2.33 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
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;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>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
<PolySharpIncludeRuntimeSupportedAttributes>true</PolySharpIncludeRuntimeSupportedAttributes>
<LangVersion>9.0</LangVersion>
</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" Version="$(MicrosoftSourceLinkGitHubVersion)" PrivateAssets="All" />
<PackageReference Include="PolySharp" Version="1.14.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<!-- ******************* Signing Support *********************** -->
<ItemGroup>
<FilesToSign Include="$(TargetPath)">
<Authenticode>Microsoft400</Authenticode>
<StrongName>StrongName</StrongName>
</FilesToSign>
<PackageReference Include="MicroBuild.Core" Version="$(MicroBuildCoreVersion)" />
</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>