-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAIButlerTest.csproj
More file actions
26 lines (24 loc) · 882 Bytes
/
AIButlerTest.csproj
File metadata and controls
26 lines (24 loc) · 882 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel" Version="1.36.0" />
<PackageReference Include="Microsoft.SemanticKernel.Agents.Core" Version="1.36.0-alpha" />
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Core" Version="1.36.0-alpha" />
</ItemGroup>
<ItemGroup>
<None Update="appsetting.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="PromptTemplate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);CA2007;IDE1006;SKEXP0001;SKEXP0110;OPENAI001</NoWarn>
</PropertyGroup>
</Project>