forked from ForNeVeR/Cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (40 loc) · 1.92 KB
/
Directory.Build.props
File metadata and controls
44 lines (40 loc) · 1.92 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
38
39
40
41
42
43
44
<!--
SPDX-FileCopyrightText: 2021-2026 Cesium contributors <https://github.com/ForNeVeR/Cesium>
SPDX-License-Identifier: MIT
-->
<Project>
<PropertyGroup Label="Versioning">
<VersionPrefix>0.4.1</VersionPrefix>
</PropertyGroup>
<PropertyGroup Label="Packaging">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild Condition="$(CI) != ''">true</ContinuousIntegrationBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>2021-2026 Cesium contributors <https://github.com/ForNeVeR/Cesium></Copyright>
</PropertyGroup>
<PropertyGroup Condition="
'$(MSBuildProjectName)' != 'Cesium.Templates' and '$(MSBuildProjectName)' != 'Cesium.Sdk'
">
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="$(IsPackable) == 'true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<PackageReference Include="ChangelogAutomation.MSBuild" PrivateAssets="All" />
<None Visible="false" Include="$(MSBuildThisFileDirectory)\LICENSES\**" Pack="true" PackagePath="\LICENSES" />
<None Visible="false" Include="$(MSBuildThisFileDirectory)\CHANGELOG.md" Pack="true" PackagePath="\" />
<None Visible="false" Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup Label="Language">
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<WarningsAsErrors>nullable</WarningsAsErrors>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Label="Artifacts">
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<PropertyGroup Label="Navigation">
<CesiumSourceRoot>$(MSBuildThisFileDirectory)</CesiumSourceRoot>
</PropertyGroup>
</Project>