Skip to content

Commit e6b2276

Browse files
Add SourceLink + Sign the LIBS
1 parent 02af941 commit e6b2276

26 files changed

Lines changed: 155 additions & 14 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ Project maintainers who do not follow or enforce the Code of Conduct in good
6565
faith may face temporary or permanent repercussions as determined by other
6666
members of the project's leadership.
6767

68+
## Contributing code and content
69+
70+
You will need to sign a contributor license agreement (CLA) before submitting your pull request. The first time you submit a PR, a bot will take you through that process.
71+
6872
## Attribution
6973

7074
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
# CaseManagement
22

3-
CaseManagement is an open source framework enabling any DOTNETCORE to host a CMMN engine.
4-
It supports most of the concepts introduced by the Case Management Model And Notation (CMMN) standard version 1.1 for examples :
5-
6-
1) Human task : Task that is performed by a Case worker.
7-
8-
2) Automatic task : Can be used in the Case to call a Business process.
9-
10-
3) Sentry : combination of an "event and/or condition".
11-
12-
4) Milestone : represents an achievable target.
13-
14-
5) Case file : represent a piece of information of any nature, ranging from unstructured to structured and from simple to complex, which information can be defined based on any information modeling language.
3+
CaseManagement is an open source framework enabling any DOTNETCORE applications to host a CMMN / WS-HumanTask or BPMN engine.
4+
It supports most of the concepts introduced by CMMN1.1, BPMN2.0.2 and WS-HumanTask.
155

166
[![Build status](https://ci.appveyor.com/api/projects/status/q2ra83o0rcla41oc?svg=true)](https://ci.appveyor.com/project/simpleidserver/casemanagement)
177
[![MyGet (dev)](https://img.shields.io/myget/advance-ict/v/CaseManagement.CMMN.svg)](http://myget.org/gallery/advance-ict)

key.snk

596 Bytes
Binary file not shown.

src/CaseManagement.BPMN.AspNetCore/CaseManagement.BPMN.AspNetCore.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<Description>BPMN for ASP.NET CORE.</Description>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
6+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
7+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
8+
<SignAssembly>true</SignAssembly>
9+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
610
</PropertyGroup>
11+
<ItemGroup>
12+
<None Include="..\..\key.snk" Link="key.snk" />
13+
</ItemGroup>
714
<ItemGroup>
815
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.0" />
16+
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
917
</ItemGroup>
1018
<ItemGroup>
1119
<ProjectReference Include="..\CaseManagement.BPMN\CaseManagement.BPMN.csproj" />

src/CaseManagement.BPMN.Common/CaseManagement.BPMN.Common.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
44
<Description>BPMN common classes.</Description>
5+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
6+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
57
</PropertyGroup>
8+
<ItemGroup>
9+
<None Include="..\..\key.snk" Link="key.snk" />
10+
</ItemGroup>
611
<ItemGroup>
712
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
13+
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
814
</ItemGroup>
915
</Project>

src/CaseManagement.BPMN.Host/CaseManagement.BPMN.Host.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
<PropertyGroup>
33
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<OutputType>Exe</OutputType>
5+
<SignAssembly>true</SignAssembly>
6+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
57
</PropertyGroup>
8+
<ItemGroup>
9+
<None Include="..\..\key.snk" Link="key.snk" />
10+
</ItemGroup>
611
<ItemGroup>
712
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
813
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />

src/CaseManagement.BPMN.Persistence.EF/CaseManagement.BPMN.Persistence.EF.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@
33
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
44
<Description>Use entity framework in the BPMN project.</Description>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
6+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
7+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
8+
<SignAssembly>true</SignAssembly>
9+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
610
</PropertyGroup>
11+
<ItemGroup>
12+
<None Include="..\..\key.snk" Link="key.snk" />
13+
</ItemGroup>
714
<ItemGroup>
815
<ProjectReference Include="..\CaseManagement.BPMN\CaseManagement.BPMN.csproj" />
916
</ItemGroup>
1017
<ItemGroup>
1118
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.8" />
19+
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
1220
</ItemGroup>
1321
</Project>

src/CaseManagement.BPMN.SqlServer.Host/CaseManagement.BPMN.SqlServer.Host.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<PropertyGroup>
33
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<OutputType>Exe</OutputType>
5+
<SignAssembly>true</SignAssembly>
6+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
57
</PropertyGroup>
68
<ItemGroup>
79
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
@@ -32,6 +34,9 @@
3234
<ItemGroup>
3335
<Folder Include="Migrations\" />
3436
</ItemGroup>
37+
<ItemGroup>
38+
<None Include="..\..\key.snk" Link="key.snk" />
39+
</ItemGroup>
3540
<ItemGroup>
3641
<Compile Update="Resources\SqlStatements.Designer.cs">
3742
<DesignTime>True</DesignTime>

src/CaseManagement.BPMN/CaseManagement.BPMN.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,20 @@
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
44
<Description>BPMN V2.0.2 implementation.</Description>
5+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
6+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
7+
<SignAssembly>true</SignAssembly>
8+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
59
</PropertyGroup>
10+
<ItemGroup>
11+
<None Include="..\..\key.snk" Link="key.snk" />
12+
</ItemGroup>
613
<ItemGroup>
714
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
815
<PackageReference Include="DynamicExpresso.Core" Version="2.3.1" />
916
<PackageReference Include="IdentityModel" Version="4.5.0" />
1017
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="8.1.0" />
18+
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
1119
</ItemGroup>
1220
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
1321
<Reference Include="System.Web" />

src/CaseManagement.CMMN.AspNetCore/CaseManagement.CMMN.AspNetCore.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<Description>CaseManagement for ASP.NET CORE.</Description>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
6+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
7+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
8+
<SignAssembly>true</SignAssembly>
9+
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
610
</PropertyGroup>
11+
<ItemGroup>
12+
<None Include="..\..\key.snk" Link="key.snk" />
13+
</ItemGroup>
714
<ItemGroup>
815
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.0" />
16+
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
917
</ItemGroup>
1018
<ItemGroup>
1119
<ProjectReference Include="..\CaseManagement.CMMN\CaseManagement.CMMN.csproj" />

0 commit comments

Comments
 (0)