|
4 | 4 | <TargetFrameworks>netstandard2.0;net452;net20</TargetFrameworks> |
5 | 5 | <RootNamespace>Org.Reddragonit.BpmEngine</RootNamespace> |
6 | 6 | <PackageId>Org.Reddragonit.BpmEngine</PackageId> |
7 | | - <Version>1.9.6</Version> |
| 7 | + <Version>1.9.8</Version> |
8 | 8 | <Authors>Roger Castaldo</Authors> |
9 | 9 | <Description>A BPMN Engine written in .net. The engine attempts to read in a bpmn notation xml document defining both the process(s) as well as the diagrams. From here you can then load/unload the state, render the diagram in its current state or animated into a gif. Using the delegates for a process, you intercept and handle task and condition checking by reading additional xml held within flow and task objects.</Description> |
10 | 10 | <PackageProjectUrl>https://github.com/roger-castaldo/BPMEngine</PackageProjectUrl> |
11 | 11 | <PackageLicenseUrl>https://www.gnu.org/licenses/gpl-3.0.en.html</PackageLicenseUrl> |
12 | 12 | <RepositoryUrl>https://github.com/roger-castaldo/BPMEngine</RepositoryUrl> |
13 | 13 | <PackageTags>BPMN</PackageTags> |
14 | | - <PackageReleaseNotes>migrated begininvoke calls to await task calls for .netstandard and 452</PackageReleaseNotes> |
15 | | - <AssemblyVersion>1.9.6.0</AssemblyVersion> |
16 | | - <FileVersion>1.9.6.0</FileVersion> |
| 14 | + <PackageReleaseNotes>updated package to loosen up loading restrictions by not checking for xml prefix in valid documents</PackageReleaseNotes> |
| 15 | + <AssemblyVersion>1.9.8.0</AssemblyVersion> |
| 16 | + <FileVersion>1.9.8.0</FileVersion> |
17 | 17 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
18 | 18 | </PropertyGroup> |
19 | 19 |
|
|
47 | 47 | </ItemGroup> |
48 | 48 |
|
49 | 49 | <ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> |
50 | | - <PackageReference Include="CoreCompat.System.Drawing" Version="1.0.0-beta006" /> |
51 | | - <PackageReference Include="System.CodeDom"> |
52 | | - <Version>4.4.0</Version> |
53 | | - </PackageReference> |
54 | | - </ItemGroup> |
55 | | - |
56 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
57 | | - <PackageReference Include="Microsoft.CodeAnalysis.Compilers"> |
58 | | - <Version>2.7.0</Version> |
59 | | - </PackageReference> |
| 50 | + <PackageReference Include="CoreCompat.System.Drawing" Version="[1.0.0-beta006,)" /> |
| 51 | + <PackageReference Include="System.CodeDom" Version="[4.4.0,)" /> |
| 52 | + <PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="[2.7.0,)" /> |
60 | 53 | </ItemGroup> |
61 | 54 |
|
62 | 55 | <ItemGroup> |
|
0 commit comments