FastReport.OpenSource.Web.csproj 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <PackageId>FastReport.OpenSource.Web</PackageId>
  4. <Designer>true</Designer>
  5. <TargetFrameworks>net6.0</TargetFrameworks>
  6. <DefineConstants>OPENSOURCE;</DefineConstants>
  7. <Version>1.0.0</Version>
  8. <PackageLicenseFile>FastReport MIT license.md</PackageLicenseFile>
  9. <Configurations>Debug;Release</Configurations>
  10. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  11. <IncludeSymbols>true</IncludeSymbols>
  12. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  13. <!--See https://devblogs.microsoft.com/dotnet/producing-packages-with-source-link/#deterministic-builds -->
  14. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  15. <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
  18. <TargetFrameworks>$(TargetFrameworks);net6.0-windows</TargetFrameworks>
  19. </PropertyGroup>
  20. <Import Project="FastReport.Web.Shared.props" />
  21. <PropertyGroup>
  22. <AssemblyOriginatorKeyFile>../FastReport.OpenSource.snk</AssemblyOriginatorKeyFile>
  23. <Description>
  24. FastReport Open Source provides a free report generator for .NET/.NET Framework. You can use the FastReport Open Source in MVC, Web API, console applications.
  25. FastReport is written in C# and it is compatible with .NET Framework 4.6.2, .NET 6 and higher. Extendable FastReport architecture allows creating your own objects, export filters, wizards, and DB engines.
  26. FastReport Open Source can save documents in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. PDF export is available as a plugin.
  27. </Description>
  28. <RepositoryUrl>https://github.com/FastReports/FastReport</RepositoryUrl>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="$(SolutionDir)FastReport.OpenSource\FastReport.OpenSource.csproj" />
  32. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Include="..\Pack\FastReport MIT license.md">
  36. <Pack>True</Pack>
  37. <Visible>false</Visible>
  38. <PackagePath></PackagePath>
  39. </None>
  40. </ItemGroup>
  41. <Import Project="..\UsedPackages.version" />
  42. <ItemGroup>
  43. <!--For buildScript only (it can't implicitly restore System.Drawing.Common)-->
  44. <PackageReference Include="System.Drawing.Common" Version="$(SystemDrawingCommonVersion)" PrivateAssets="All" />
  45. </ItemGroup>
  46. <!--Source Link-->
  47. <ItemGroup>
  48. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Remove="Application\Dialog\**" />
  52. </ItemGroup>
  53. </Project>