-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
47 lines (43 loc) · 1.97 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
<Project>
<PropertyGroup>
<Authors>AvantiPoint</Authors>
<Copyright>© AvantiPoint</Copyright>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/AvantiPoint/avantipoint.packages/releases</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/AvantiPoint/avantipoint.packages</PackageProjectUrl>
<PackageOutputPath>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)', 'Artifacts'))</PackageOutputPath>
<IsPackable>false</IsPackable>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>True</IncludeSource>
<LangVersion>latest</LangVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AvantiPoint/avantipoint.packages.git</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);NU1507</NoWarn>
</PropertyGroup>
<!-- CI Helper -->
<PropertyGroup>
<CI Condition=" $(CI) == '' ">false</CI>
<ContinuousIntegrationBuild>$(CI)</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition="$(IsPackable)">
<None Include="$(MSBuildThisFileDirectory)avantipoint-icon.png" Pack="true" PackagePath="\icon.png" />
</ItemGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>