You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Directory.Build.targets 461 B

12345678910111213
  1. <Project>
  2. <PropertyGroup>
  3. <ReadMePath>$(MSBuildProjectDirectory)\README.md</ReadMePath>
  4. <ReadMeExists Condition="Exists('$(ReadMePath)')">true</ReadMeExists>
  5. <PackageReadmeFile Condition="'$(PackageReadmeFile)' == '' And '$(ReadMeExists)' == 'true'">README.md</PackageReadmeFile>
  6. </PropertyGroup>
  7. <ItemGroup Condition="'$(ReadMeExists)' == 'true'">
  8. <None Include="$(ReadMePath)" Pack="true" PackagePath="\" />
  9. </ItemGroup>
  10. </Project>