Skip to content

Commit 915587e

Browse files
committed
Fix dependency discovered on Ubuntu 20 🐛🧹
Fix the error discovered in c2f034b Work around the issue described at dotnet/core#2186 and https://github.com/dotnet/core/issues/5019 Integrate the fix shared by @petrsvihlik at dotnet/core#2186 (comment)
1 parent c2f034b commit 915587e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

implement/elm-fullstack/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace elm_fullstack
1414
{
1515
public class Program
1616
{
17-
static public string AppVersionId => "2021-06-05";
17+
static public string AppVersionId => "2021-06-16";
1818

1919
static int AdminInterfaceDefaultPort => 4000;
2020

implement/elm-fullstack/elm-fullstack.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@
55
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<RootNamespace>elm_fullstack</RootNamespace>
77
<AssemblyName>elm-fs</AssemblyName>
8-
<AssemblyVersion>2021.0605.0.0</AssemblyVersion>
9-
<FileVersion>2021.0605.0.0</FileVersion>
8+
<AssemblyVersion>2021.0616.0.0</AssemblyVersion>
9+
<FileVersion>2021.0616.0.0</FileVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
1313
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1414
</ItemGroup>
1515

16+
<ItemGroup>
17+
<RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" />
18+
</ItemGroup>
19+
1620
<PropertyGroup>
1721
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
1822
</PropertyGroup>

0 commit comments

Comments
 (0)