-
Notifications
You must be signed in to change notification settings - Fork 27
/
Math.csproj
42 lines (35 loc) · 1.27 KB
/
Math.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<RootNamespace>Math</RootNamespace>
</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.program\TypeChat.Program.csproj" />
<ProjectReference Include="..\..\src\typechat\TypeChat.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="MathAPI.cs">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="input.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>