Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Re-add embed (#6277)
  • Loading branch information
KevinRansom authored Feb 25, 2019
commit efb57cf56934bd28d3aa174d3c45a3eb4e7c1eb1
4 changes: 4 additions & 0 deletions src/fsharp/FSharp.Build/Fsc.fs
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,10 @@ type public Fsc () as this =
with get() = embedAllSources
and set(s) = embedAllSources <- s

member fsc.Embed
with get() = embeddedFiles
and set(e) = embeddedFiles <- e

member fsc.EmbeddedFiles
with get() = embeddedFiles
and set(e) = embeddedFiles <- e
Expand Down
2 changes: 1 addition & 1 deletion src/fsharp/FSharp.Build/Microsoft.FSharp.Targets
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ this file.
DocumentationFile="$(DocumentationFile)"
DotnetFscCompilerPath="$(DotnetFscCompilerPath)"
EmbedAllSources="$(EmbedAllSources)"
EmbeddedFiles="@(EmbeddedFiles)"
Embed="@(EmbeddedFiles)"
GenerateInterfaceFile="$(GenerateInterfaceFile)"
HighEntropyVA="$(HighEntropyVA)"
KeyFile="$(KeyOriginatorFile)"
Expand Down