-
Notifications
You must be signed in to change notification settings - Fork 47
/
microwf.Core.csproj
26 lines (24 loc) · 1.14 KB
/
microwf.Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<AssemblyName>tomware.Microwf.Core</AssemblyName>
<RootNamespace>tomware.Microwf.Core</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Description>A simple finite state machine (FSM) with workflow character where you define your workflows in code.</Description>
<RepositoryUrl>https://github.com/thomasduft/microwf</RepositoryUrl>
<Authors>Thomas Duft</Authors>
<Company>tomWare SOLUTIONS</Company>
<RepositoryType>git</RepositoryType>
<Copyright>2018 tomWare SOLUTIONS</Copyright>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>StateMachine Workflow micro</PackageTags>
<PackageProjectUrl>https://github.com/thomasduft/microwf</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE.md" Pack="true" PackagePath=""/>
<None Include="..\..\icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>