mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
41facf3a2d
* Added Throw shared class * Added Experimental attribute * Added IsExternalInit * Added TrimAttributes * Small update * Small update * Suppress warning * Added comment * Updated LegacySupport.props * Small updates
16 lines
913 B
XML
16 lines
913 B
XML
<Project>
|
|
<!-- Direct all packages under 'dotnet' to get versions from Directory.Packages.props -->
|
|
<!-- using Central Package Management feature -->
|
|
<!-- https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management -->
|
|
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.1.3" />
|
|
<!-- Only run 'dotnet format' on dev machines, Release builds. Skip on GitHub Actions -->
|
|
<!-- as this runs in its own Actions job. -->
|
|
<Target Name="DotnetFormatOnBuild" BeforeTargets="Build"
|
|
Condition=" '$(Configuration)' == 'Release' AND '$(GITHUB_ACTIONS)' == '' AND '$(TargetFramework)' == '$(ProjectsDebugTargetFrameworks)'">
|
|
<Message Text="Running dotnet format" Importance="high" />
|
|
<Exec Command="dotnet format --no-restore -v diag $(ProjectFileName)" />
|
|
</Target>
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)\eng\MSBuild\Shared.targets" />
|
|
</Project>
|