-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
51 lines (43 loc) · 2.18 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Platform>AnyCPU</Platform>
<IsTestProject>$(MSBuildProjectName.Contains('.Test'))</IsTestProject>
<DebugType>embedded</DebugType>
<GenerateDocumentationFile Condition="!$(IsTestProject)">true</GenerateDocumentationFile>
<Authors>Markus Muecke</Authors>
<Owners>Markus Muecke</Owners>
<Copyright>Copyright (c) Markus Muecke 2020</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/mmuecke/Grpc.Reactive</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<PackageTags>gRPC;Rx;Reactive;Observable</PackageTags>
<PackageReleaseNotes>https://github.com/mmuecke/Grpc.Reactive/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/mmuecke/Grpc.Reactive</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Include PDB in the built .nupkg -->
<IncludeSymbols>true</IncludeSymbols>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<SolutionDir Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.194" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Condition="!$(IsTestProject)">
<PackageReference Include="Roslynator.Analyzers" Version="3.1.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
</Project>