mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
cd0587c5f6
* First batch of workflow getting started samples in .Net * Add Switch Case Edge group * Add multi selection group * Add comments * Add readme * Fix formatting * clean project file * WIP: Revise sample structures * Update readme * Update readme * Fix file encoding * Update sample format * Address comments * Fix formatting * Remove unwanted file * Fix unit tests * Remove unwanted file
23 lines
607 B
XML
23 lines
607 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<LangVersion>12</LangVersion>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\src\Microsoft.Agents.Workflows\Microsoft.Agents.Workflows.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\Resources\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<Link>Resources\%(Filename)%(Extension)</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |