aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-02-11 12:52:26 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-02-11 12:52:26 +0100
commit7d368400719672e16ff83a436a0dcc6dff8026c4 (patch)
tree8ed1b9566cad4853529efe1b4a67d7fb4b0bc82a
parenta24a94ef6ebc6b025cf3ceb8439e9504d7c08352 (diff)
Adjust garbage collection configuration.
This adjusts the runtime GC settings to the proper settings for server applications.
-rw-r--r--HelloApp/HelloApp.fsproj4
1 files changed, 4 insertions, 0 deletions
diff --git a/HelloApp/HelloApp.fsproj b/HelloApp/HelloApp.fsproj
index 54be4a7..71937a0 100644
--- a/HelloApp/HelloApp.fsproj
+++ b/HelloApp/HelloApp.fsproj
@@ -3,6 +3,10 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
+ <PropertyGroup>
+ <ServerGarbageCollection>true</ServerGarbageCollection>
+ <ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
+ </PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>