-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (19 loc) · 981 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
20 lines (19 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<Version>0.4.1</Version>
<Authors>actbit</Authors>
<PackageProjectUrl>https://github.com/actbit/AstFirst</PackageProjectUrl>
<RepositoryUrl>https://github.com/actbit/AstFirst</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright (c) actbit</Copyright>
<IsPackable>false</IsPackable>
<!-- NuGet README: ローカルは README.md (相対リンクのまま)。
CI で -p:PackageReadmePath=<変換済み絶対URL版> を上書きする。 -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReadmePath>$(MSBuildThisFileDirectory)README.md</PackageReadmePath>
</PropertyGroup>
<!-- パッケージ化するプロジェクト (IsPackable=true) のみ、README を README.md として格納。 -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(PackageReadmePath)" Pack="true" PackagePath="\README.md" />
</ItemGroup>
</Project>