-
Notifications
You must be signed in to change notification settings - Fork 27
/
SchemaHierarchy.csproj
51 lines (43 loc) · 1.71 KB
/
SchemaHierarchy.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<StartupObject>SchemaHierarchy.SchemaHierarchyApp</StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\CoffeeShop\*.cs" LinkBase="CoffeeShop" />
<Compile Include="..\Calendar\*.cs" LinkBase="Calendar" />
<Compile Include="..\Restaurant\*.cs" LinkBase="Restaurant" />
<Compile Include="..\Sentiment\*.cs" LinkBase="Sentiment" />
<Compile Include="..\HealthData\*.cs" LinkBase="HealthData" />
</ItemGroup>
<ItemGroup>
<Compile Remove="..\Calendar\Program.cs" />
<Compile Remove="..\CoffeeShop\Program.cs" />
<Compile Remove="..\HealthData\Program.cs" />
<Compile Remove="..\Restaurant\Program.cs" />
<Compile Remove="..\Sentiment\Program.cs" />
</ItemGroup>
<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\TypeChat.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="input.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>