Directory.Build.props 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <SlnDir>$(MSBuildThisFileDirectory)..</SlnDir>
  5. <Authors>Fast Reports Inc.</Authors>
  6. <Product>FastReport</Product>
  7. <PackageId>FastReport.Compat</PackageId>
  8. <Copyright>Fast Reports Inc.</Copyright>
  9. <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
  10. <PackageProjectUrl>https://www.fast-report.com/en/product/fast-report-net</PackageProjectUrl>
  11. <PackageTags>reporting, reports, pdf, html, mvc, core</PackageTags>
  12. <RepositoryUrl>https://github.com/FastReports/FastReport</RepositoryUrl>
  13. <RepositoryType>GIT</RepositoryType>
  14. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  15. <Description>Common compatible types for FastReport .Net, Core and Mono</Description>
  16. <PackageIcon>frlogo192.png</PackageIcon>
  17. <PackageIconUrl />
  18. <SignAssembly>false</SignAssembly>
  19. <AssemblyOriginatorKeyFile>..\..\FastReport.OpenSource.snk</AssemblyOriginatorKeyFile>
  20. <SourceCode>$(MSBuildThisFileDirectory)shared</SourceCode>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)'!='Debug'">
  23. <DebugType>none</DebugType>
  24. <Optimize>true</Optimize>
  25. <DebugSymbols>false</DebugSymbols>
  26. <BuildProjectReferences>false</BuildProjectReferences>
  27. <GenerateDependencyFile>false</GenerateDependencyFile>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Compile Include="$(SourceCode)\**\*.cs"/>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <None Include="$(SlnDir)\Pack\frlogo192.png">
  34. <Pack>True</Pack>
  35. <PackagePath></PackagePath>
  36. </None>
  37. <None Include="$(MSBuildThisFileDirectory)LICENSE.md">
  38. <Pack>True</Pack>
  39. <PackagePath></PackagePath>
  40. </None>
  41. <None Include="$(SlnDir)\Pack\$(PackageId)\**">
  42. <Pack>True</Pack>
  43. <PackagePath></PackagePath>
  44. <Visible>false</Visible>
  45. </None>
  46. </ItemGroup>
  47. </Project>