-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
52 lines (42 loc) · 2.05 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Language>C#</Language>
<LangVersion>8.0</LangVersion>
<NoWarn>1591</NoWarn>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jroliveira/http-query-filter</RepositoryUrl>
<Authors>Junior Oliveira</Authors>
<Owners>Junior Oliveira</Owners>
<Description>Project-based filter system StrongLoop Node.js API Platform developed by IBM Company.</Description>
<Copyright>© Copyright (c) 2019 Junior Oliveira.</Copyright>
<PackageProjectUrl>https://github.com/jroliveira/http-query-filter</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/jroliveira/http-query-filter/master/docs/logo.png</PackageIconUrl>
</PropertyGroup>
<!-- C# 8 nullability checks -->
<PropertyGroup>
<Nullable>enable</Nullable>
<NullableContextOptions>enable</NullableContextOptions>
<NullableReferenceTypes>true</NullableReferenceTypes>
</PropertyGroup>
<!-- Support for building in Visual Studio versions 15.9 and up -->
<PropertyGroup Condition="'$(MSBuildVersion)' >= '15.9'">
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<!-- Include LICENSE.txt.txt file as licenseUrl has been deprecated in NuGet -->
<None Include="$(MSBuildThisFileDirectory)\LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>
<!-- Support for building in Visual Studio versions before 15.9 -->
<PropertyGroup Condition="'$(MSBuildVersion)' < '15.9'">
<PackageLicenseUrl>https://github.com/jroliveira/http-query-filter/blob/master/LICENSE.txt</PackageLicenseUrl>
<!-- Disable licenseUrl deprecation warning in later versions of VS -->
<NoWarn>NU5125</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Code Analysis">
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)code-analysis.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup Label="NuGet">
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
</ItemGroup>
</Project>