-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.props
36 lines (27 loc) · 1.38 KB
/
package.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>
<PropertyGroup>
<Version>2.0.1</Version>
<Description>A message driven distributed asynchronous workflow framework. 消息驱动的分布式异步工作流程处理框架。</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>stratos</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/stratosblue/FluentWorkflow</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<PackageTags>fluentworkflow fluent-workflow workflow wf distributed asynchronous message mq messagequeue message-queue sourcegenerator source-generator</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.*" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>