mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
d0531bb93b
* Add skeleton dotnet project structure * Fix casing in import statement. * Moving tests folder to be a sibling of src. * Update tests to use directory.builds.props and only build necessary frameworks. * Move more test props to directory.build.props * Add AotCompatible flag and .net 8.0 * Rename Tests to UnitTests * Add global.json file * Update publish mapping for unit tests to debug, to reduce build times.
26 lines
720 B
XML
26 lines
720 B
XML
<Project>
|
|
|
|
<Import Project="../Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<IsAotCompatible>false</IsAotCompatible>
|
|
<ProjectsTargetFrameworks>net472;net9.0</ProjectsTargetFrameworks>
|
|
<ProjectsDebugTargetFrameworks>net9.0</ProjectsDebugTargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|