-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (33 loc) · 1.46 KB
/
Directory.Build.props
File metadata and controls
37 lines (33 loc) · 1.46 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
<Project>
<!-- Build configuration -->
<PropertyGroup>
<LangVersion>13.0</LangVersion>
<ImplicitUsings>True</ImplicitUsings>
<RootNamespace>OpenServiceBroker</RootNamespace>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<OutputType>Library</OutputType>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NoWarn>$(NoWarn);1591</NoWarn><!-- Missing XML comments -->
</PropertyGroup>
<!-- NuGet Metadata -->
<PropertyGroup>
<Authors>Bastian Eicher</Authors>
<Copyright>Copyright Bastian Eicher et al.</Copyright>
<RepositoryUrl>https://github.com/TypedRest/OpenServiceBroker</RepositoryUrl>
<PackageProjectUrl>https://openservicebroker.typedrest.net/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)..\icon.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)..\readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<!-- Build-time dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
</ItemGroup>
</Project>