Skip to content

Commit

Permalink
Fix bug in the compiler for 'GenerateJsonConverters' module
Browse files Browse the repository at this point in the history
Fix a bug in the compiler that could lead to missing dependencies in apps using the 'CompilationInterface.GenerateJsonConverters' module.
  • Loading branch information
Viir committed Mar 17, 2023
1 parent 90b7754 commit ad12945
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ asCompletelyLoweredElmApp entryPointClasses arguments =
[ ( "SourceFiles", modulesToAddForBytesCoding )
, ( "ElmMake", modulesToAddForBytesCoding )
, ( "GenerateJsonCoders", modulesToAddForBase64Coding )
, ( "GenerateJsonConverters", modulesToAddForBase64Coding )
]
|> Dict.fromList

Expand Down
2 changes: 1 addition & 1 deletion implement/elm-time/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ElmTime;

public class Program
{
static public string AppVersionId => "2023-03-16";
static public string AppVersionId => "2023-03-17";

static int AdminInterfaceDefaultPort => 4000;

Expand Down
4 changes: 2 additions & 2 deletions implement/elm-time/elm-time.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>ElmTime</RootNamespace>
<AssemblyName>elm-time</AssemblyName>
<AssemblyVersion>2023.0316.0.0</AssemblyVersion>
<FileVersion>2023.0316.0.0</FileVersion>
<AssemblyVersion>2023.0317.0.0</AssemblyVersion>
<FileVersion>2023.0317.0.0</FileVersion>
<Nullable>enable</Nullable>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ asCompletelyLoweredElmApp entryPointClasses arguments =
[ ( "SourceFiles", modulesToAddForBytesCoding )
, ( "ElmMake", modulesToAddForBytesCoding )
, ( "GenerateJsonCoders", modulesToAddForBase64Coding )
, ( "GenerateJsonConverters", modulesToAddForBase64Coding )
]
|> Dict.fromList

Expand Down

0 comments on commit ad12945

Please sign in to comment.