-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
44 lines (37 loc) · 1.9 KB
/
Copy pathDirectory.Build.props
File metadata and controls
44 lines (37 loc) · 1.9 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
<Project>
<!--
Shared NuGet package metadata for the publishable MetaObjects C# packages.
Applies to every project under server/csharp/; test/integration projects opt
out via <IsPackable>false</IsPackable> below. Per-package <PackageId>,
<Title>, and <Description> live in each project's own .csproj.
-->
<PropertyGroup>
<Version>0.19.1</Version>
<Authors>Doug Mealing</Authors>
<Company>Doug Mealing LLC</Company>
<Product>MetaObjects</Product>
<Copyright>Copyright (c) Doug Mealing LLC</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/metaobjectsdev/metaobjects</PackageProjectUrl>
<RepositoryUrl>https://github.com/metaobjectsdev/metaobjects</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>metaobjects;metadata;codegen;model-driven;cross-language</PackageTags>
<!-- Source Link + deterministic, reproducible builds for published packages. -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- Test + integration projects are never published. -->
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Tests')) Or '$(MSBuildProjectName)' == 'MetaObjects.IntegrationTests'">
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Pack the C#-port README into every publishable package. -->
<PropertyGroup Condition="'$(IsPackable)' != 'false'">
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' != 'false'">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>