blob: 1c2028eceee5e6606269b8a1f441bea0acd69a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="Data\planner_prompt.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="Data\planner_prompt.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="12.2.3" />
<PackageReference Include="Azure.Identity" Version="1.12.0" />
</ItemGroup>
</Project>
|