-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitNetSharp.App.csproj
More file actions
29 lines (24 loc) · 950 Bytes
/
BitNetSharp.App.csproj
File metadata and controls
29 lines (24 loc) · 950 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
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\BitNetSharp.Core\BitNetSharp.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="Microsoft.Agents.AI" Version="1.0.0-rc4" />
<PackageReference Include="Microsoft.Agents.AI.Hosting" Version="1.0.0-preview.260311.1" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\templates\datagen\**\*.*">
<Link>templates\datagen\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>bitnetsharp</ToolCommandName>
</PropertyGroup>
</Project>