-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAIAnnotate.csproj
37 lines (33 loc) · 1.42 KB
/
AIAnnotate.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>faa9370c-c51f-44f2-af30-7520796825f9</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazorise.Bootstrap" Version="1.2.3" />
<PackageReference Include="Blazorise.Components" Version="1.2.3" />
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.2.3" />
<PackageReference Include="Blazorise.Markdown" Version="1.2.3" />
<PackageReference Include="Markdig" Version="0.31.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="0.19.230804.2-preview" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.1" />
</ItemGroup>
<ItemGroup>
<None Update="skills\analysis.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="skills\analysis_en.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="skills\annotate.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="skills\annotate_en.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>