mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-03 15:10:15 +00:00
14 lines
461 B
Plaintext
14 lines
461 B
Plaintext
![]() |
<Project>
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<ReadMePath>$(MSBuildProjectDirectory)\README.md</ReadMePath>
|
||
|
<ReadMeExists Condition="Exists('$(ReadMePath)')">true</ReadMeExists>
|
||
|
<PackageReadmeFile Condition="'$(PackageReadmeFile)' == '' And '$(ReadMeExists)' == 'true'">README.md</PackageReadmeFile>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup Condition="'$(ReadMeExists)' == 'true'">
|
||
|
<None Include="$(ReadMePath)" Pack="true" PackagePath="\" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|