mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
dac17a8f48
* Guidance * Guidance * WIP Migration Preps * Move to single file projects * Update guidance code and final adjustments to ensure all feature compatibility * Move from demos to samples * Address format * Address chat client pipeline order * Update project naming * Revisition on README * Remove unused ctor * Address feedback * Address feedback * Address merge conflict fix * Address SK versioning * Address folder naming * Address feedback
21 lines
603 B
XML
21 lines
603 B
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
<AnalysisLevel>latest</AnalysisLevel>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<Configurations>Debug;Release;Publish</Configurations>
|
|
<NoWarn>$(NoWarn);NU5104</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="SampleHelpers.SampleEnvironment" Alias="Environment" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="$(MSBuildThisFileDirectory)../src/Shared/Demos/*.cs" LinkBase="" Visible="false" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|