-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
56 lines (51 loc) · 2.66 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<RootNamespace>ProtoBuf.Grpc</RootNamespace>
<Authors>Marc Gravell</Authors>
<OutputType>Library</OutputType>
<SignAssembly>true</SignAssembly>
<DelaySign>False</DelaySign>
<NoWarn>NU5105;CS1701;BC42016;MSB3884;NETSDK1057;CS8632;IDE0090;IDE0057;xUnit1004</NoWarn>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)ProtoBuf.snk</AssemblyOriginatorKeyFile>
<Copyright>Marc Gravell, 2022-</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/protobuf-net/protobuf-net.GrpcLite</PackageProjectUrl>
<RepositoryUrl>https://github.com/protobuf-net/protobuf-net.GrpcLite</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Product>protobuf-net.GrpcLite ($(TargetFramework))</Product>
<PackageReleaseNotes>https://protobuf-net.github.io/protobuf-net.GrpcLite/releasenotes#$(VersionPrefix)</PackageReleaseNotes>
<PackageTags>grpc</PackageTags>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<DefaultLanguage>en-US</DefaultLanguage>
<IncludeSymbols>false</IncludeSymbols>
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!--<CodeAnalysisRuleset>$(MSBuildThisFileDirectory)Shared.ruleset</CodeAnalysisRuleset>-->
<ExampleRefs>local</ExampleRefs> <!-- local or nuget-->
<PBGRPCLibVersion>1.0.167</PBGRPCLibVersion>
<GrpcDotNetVersion>2.44.0</GrpcDotNetVersion>
<GoogleProtobufVersion>3.19.2</GoogleProtobufVersion>
<GrpcVersion>2.44.0</GrpcVersion>
<ProtoBufNet2Version>2.4.6</ProtoBufNet2Version>
<ProtoBufNet3Version>3.0.101</ProtoBufNet3Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release' or '$(Configuration)'=='VS'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release' and '$(SourceRoot)'==''">
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="all" />
</ItemGroup>
</Project>