Skip to content

Commit 3cc0bcc

Browse files
author
Leonid
committed
Update .net core version
1 parent 9ff734d commit 3cc0bcc

File tree

11 files changed

+2312
-20
lines changed

11 files changed

+2312
-20
lines changed

eFormAPI/eFormAPI.Web.Integration.Tests/eFormAPI.Web.Integration.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>netcoreapp2.2</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
10-
<PackageReference Include="Microting.eForm" Version="3.0.104" />
10+
<PackageReference Include="Microting.eForm" Version="3.0.112" />
1111
<PackageReference Include="NUnit" Version="3.10.1" />
1212
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
1313
</ItemGroup>

eFormAPI/eFormAPI.Web.Tests/eFormAPI.Web.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<TargetFramework>netcoreapp2.2</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
10-
<PackageReference Include="Microting.eForm" Version="3.0.104" />
10+
<PackageReference Include="Microting.eForm" Version="3.0.112" />
1111
<PackageReference Include="NUnit" Version="3.10.1" />
1212
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
1313
</ItemGroup>

eFormAPI/eFormAPI.Web/Hosting/Helpers/PluginHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static List<IEformPlugin> GetPlugins()
4444
#if DEBUG
4545
Console.ForegroundColor = ConsoleColor.Red;
4646
Console.WriteLine("RUNNING IN DEBUG MODE!");
47-
pluginList = Directory.GetFiles(Path.Combine(directory, "netcoreapp2.1"))
47+
pluginList = Directory.GetFiles(Path.Combine(directory, "netcoreapp2.2"))
4848
.Where(x => x.EndsWith("Pn.dll") && Path.GetFileName(x) != "eFormApi.BasePn.dll")
4949
.ToList();
5050
#else

eFormAPI/eFormAPI.Web/Infrastructure/Database/Entities/MenuItem.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ public class MenuItem : BaseEntity
88
{
99
[StringLength(250)]
1010
public string Name { get; set; }
11+
12+
[StringLength(250)]
13+
public string LocaleName { get; set; }
14+
1115
public string Link { get; set; }
1216
public string E2EId { get; set; }
1317

eFormAPI/eFormAPI.Web/Infrastructure/Seed/SeedItems/MenuItemSeed.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public static ModelBuilder AddDefaultMenu(this ModelBuilder modelBuilder)
1313
{
1414
Id = 1,
1515
Name = "My eForms",
16+
LocaleName = "MyEforms",
1617
E2EId = "my-eforms",
1718
Link = "/",
1819
Position = 0,

0 commit comments

Comments
 (0)