aboutsummaryrefslogtreecommitdiff
path: root/HelloApp/HelloApp.fsproj
blob: 71937a0d134d0b80a45dd7ed87702f115877be06 (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>netcoreapp2.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>