Skip to content

Commit 24fe9d5

Browse files
Ticket #107 #108: Migrate DOTNET5.0 + Add Confirm PWD + PWD fields
1 parent 3951f1b commit 24fe9d5

148 files changed

Lines changed: 6486 additions & 2751 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.0.3</VersionPrefix>
3+
<VersionPrefix>1.0.4</VersionPrefix>
44
<Authors>SimpleIdServer</Authors>
55
<Owners>SimpleIdServer</Owners>
66
</PropertyGroup>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.1.102"
3+
"version": "5.0.103"
44
}
55
}

logos/confirmpwd.svg

Lines changed: 93 additions & 0 deletions
Loading

logos/pwd.svg

Lines changed: 88 additions & 0 deletions
Loading

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netstandard2.0</TargetFramework>
3+
<TargetFramework>netstandard2.1</TargetFramework>
44
<Description>BPMN for ASP.NET CORE.</Description>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
66
<PublishRepositoryUrl>true</PublishRepositoryUrl>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
3+
<TargetFramework>netstandard2.1</TargetFramework>
44
<Description>BPMN common classes.</Description>
55
<PublishRepositoryUrl>true</PublishRepositoryUrl>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
@@ -9,11 +9,11 @@
99
<None Include="..\..\key.snk" Link="key.snk" />
1010
</ItemGroup>
1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
13-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
12+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.3" />
13+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.3" />
1414
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.0" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.8" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.8" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.3" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.3" />
1717
</ItemGroup>
1818
<ItemGroup>
1919
<ProjectReference Include="..\CaseManagement.BPMN.AspNetCore\CaseManagement.BPMN.AspNetCore.csproj" />

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
3+
<TargetFramework>netstandard2.1</TargetFramework>
44
<Description>Use entity framework in the BPMN project.</Description>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
66
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -15,7 +15,7 @@
1515
<ProjectReference Include="..\CaseManagement.BPMN\CaseManagement.BPMN.csproj" />
1616
</ItemGroup>
1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.8" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.3" />
1919
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
2020
</ItemGroup>
2121
</Project>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net5.0</TargetFramework>
44
<OutputType>Exe</OutputType>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>C:\Projects\CaseManagement\key.snk</AssemblyOriginatorKeyFile>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.2" />
10-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
9+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.3" />
10+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.3" />
1111
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.5.0" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.8" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.8" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.3" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.3" />
1414
<PackageReference Include="NEventStore.Persistence.Sql" Version="6.0.0" />
1515
</ItemGroup>
1616
<ItemGroup>

src/CaseManagement.BPMN/CaseManagement.BPMN.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net472</TargetFrameworks>
3+
<TargetFramework>netstandard2.1</TargetFramework>
44
<Description>BPMN V2.0.2 implementation.</Description>
55
<PublishRepositoryUrl>true</PublishRepositoryUrl>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>

0 commit comments

Comments
 (0)