aboutsummaryrefslogtreecommitdiff
path: root/HelloApp/HelloApp.fsproj
blob: a345ea03b6665e302bce7910db37f48d38ec12a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
  </PropertyGroup>
  <PropertyGroup>
    <ServerGarbageCollection>true</ServerGarbageCollection>
    <ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="Program.fs" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\HelloLib\HelloLib.fsproj" />
    <ProjectReference Include="..\HelloGrpc\HelloGrpc.csproj" />
  </ItemGroup>
</Project>