-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
50 lines (47 loc) · 2.2 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
<Project>
<PropertyGroup>
<NeutralLanguage>en</NeutralLanguage>
<IncludeSymbols>True</IncludeSymbols>
<IncludeSource>True</IncludeSource>
<Authors>Dan Siegel</Authors>
<Company>AvantiPoint</Company>
<Copyright>Copyright © AvantiPoint 2016-$([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>avantipoint-icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/AvantiPoint/nuke.maui</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AvantiPoint/nuke.maui.git</RepositoryUrl>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
<PackageOutputPath Condition=" '$(BUILD_ARTIFACTSTAGINGDIRECTORY)' != '' ">$(BUILD_ARTIFACTSTAGINGDIRECTORY)</PackageOutputPath>
<IsPackable>true</IsPackable>
<IsPackable Condition=" $(MSBuildProjectName.Contains('Demo')) OR $(MSBuildProjectName) == '_build' ">false</IsPackable>
<GeneratePackageOnBuild>$(IsPackable)</GeneratePackageOnBuild>
<ContinuousIntegrationBuild>$(CI)</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<!-- Nuget source link -->
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup Condition=" $(IsPackable) ">
<None Include="$(MSBuildThisFileDirectory)LICENSE"
Visible="False"
Pack="True"
PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)avantipoint-icon.png"
Visible="False"
Pack="True"
PackagePath="" />
<SourceRoot Include="$(MSBuildThisFileDirectory)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning"
Version="3.5.119"
PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub"
Version="1.1.1"
PrivateAssets="all" />
</ItemGroup>
</Project>