Directory.Build.props 1.1 KB

123456789101112131415161718192021222324252627
  1. <Project>
  2. <PropertyGroup>
  3. <Copyright>Copyright (c) Essensoft and Contributors</Copyright>
  4. <Authors>Essensoft</Authors>
  5. <Product>Paylinks</Product>
  6. <Version>5.0.0</Version>
  7. <NoWarn>$(NoWarn);CS8618</NoWarn>
  8. <PackageIcon>logo.png</PackageIcon>
  9. <PackageProjectUrl>https://github.com/essensoft/paylinks</PackageProjectUrl>
  10. <RepositoryType>git</RepositoryType>
  11. <RepositoryUrl>https://github.com/essensoft/paylinks</RepositoryUrl>
  12. <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
  13. <PackageReadmeFile>README.md</PackageReadmeFile>
  14. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  15. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  16. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  17. <LangVersion>latest</LangVersion>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <None Include="$(MSBuildThisFileDirectory)logo.png" Pack="true" Visible="false" PackagePath=""/>
  21. <None Include="$(MSBuildThisFileDirectory)LICENSE.md" Pack="true" Visible="false" PackagePath=""/>
  22. <None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" Visible="false" PackagePath=""/>
  23. </ItemGroup>
  24. </Project>