Skip to content

Commit

Permalink
Fix dependency discovered on Ubuntu 20 🐛🧹
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Viir committed Jun 16, 2021
1 parent c2f034b commit 915587e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion implement/elm-fullstack/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace elm_fullstack
{
public class Program
{
static public string AppVersionId => "2021-06-05";
static public string AppVersionId => "2021-06-16";

static int AdminInterfaceDefaultPort => 4000;

Expand Down
8 changes: 6 additions & 2 deletions implement/elm-fullstack/elm-fullstack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>elm_fullstack</RootNamespace>
<AssemblyName>elm-fs</AssemblyName>
<AssemblyVersion>2021.0605.0.0</AssemblyVersion>
<FileVersion>2021.0605.0.0</FileVersion>
<AssemblyVersion>2021.0616.0.0</AssemblyVersion>
<FileVersion>2021.0616.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>

<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" />
</ItemGroup>

<PropertyGroup>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
</PropertyGroup>
Expand Down

0 comments on commit 915587e

Please sign in to comment.