Skip to content

Commit

Permalink
fix StarterPack
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Jul 12, 2016
1 parent a50e05f commit 0e2315c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,11 @@ type ILAssemblyManifest =
let asmName = AssemblyName(Name=x.Name)
x.PublicKey |> Option.iter (fun bytes -> asmName.SetPublicKey(bytes))
x.Version |> Option.iter (fun v -> asmName.Version <- v)
asmName.CultureInfo <- System.Globalization.CultureInfo.InvariantCulture;
#if NETSTANDARD1_6
asmName.CultureName <- System.Globalization.CultureInfo.InvariantCulture.Name
#else
asmName.CultureInfo <- System.Globalization.CultureInfo.InvariantCulture
#endif
asmName
override x.ToString() = "manifest " + x.Name

Expand Down

0 comments on commit 0e2315c

Please sign in to comment.