forked from MassTransit/MassTransit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
36 lines (30 loc) · 1.35 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
<Project>
<Import Project="..\Directory.Build.props"/>
<PropertyGroup>
<Product>MassTransit</Product>
<Copyright>Copyright 2007-2024 Chris Patterson</Copyright>
<Authors>Chris Patterson</Authors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugSymbols>True</DebugSymbols>
<NoWarn>$(NoWarn)</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup>
<PackageIcon>mt-logo-small.png</PackageIcon>
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://masstransit.io</PackageProjectUrl>
<Description>MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.</Description>
<IsPackable>True</IsPackable>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\mt-logo-small.png" Pack="true" Visible="false" PackagePath=""/>
<None Include="..\..\NuGet.README.md" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
</Project>