-
Notifications
You must be signed in to change notification settings - Fork 27
/
HealthData.csproj
35 lines (29 loc) · 1.1 KB
/
HealthData.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Include="..\appSettings.json" Link="appSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition="Exists('..\appSettings.Development.json')">
<Content Include="..\appSettings.Development.json" Link="appSettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\typechat.examplesLib\TypeChat.ExamplesLib.csproj" />
<ProjectReference Include="..\..\src\typechat.sk\TypeChat.SemanticKernel.csproj" />
<ProjectReference Include="..\..\src\typechat\TypeChat.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="input.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>