Viewer.WPF.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <UseWpf>true</UseWpf>
  4. <LangVersion>latest</LangVersion>
  5. <OutputType>WinExe</OutputType>
  6. <Configurations>Debug;Release;Demo</Configurations>
  7. <TargetFramework>net6.0-windows</TargetFramework>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <Title>FastReport.WPF Viewer</Title>
  11. <Description>Report generator</Description>
  12. <Company>Fast Reports Inc.</Company>
  13. <Authors>Fast Reports Inc.</Authors>
  14. <Product>FastReport.WPF Viewer</Product>
  15. <Copyright>Copyright © Fast Reports Inc. 2007-2024</Copyright>
  16. <RootNamespace>Viewer</RootNamespace>
  17. <AssemblyName>Viewer</AssemblyName>
  18. <ApplicationManifest>app.manifest</ApplicationManifest>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)' != 'Debug'">
  21. <DebugSymbols>false</DebugSymbols>
  22. <DebugType>none</DebugType>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>full</DebugType>
  27. <Optimize>false</Optimize>
  28. <DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)' == 'Demo'">
  31. <DefineConstants>$(DefineConstants);Demo</DefineConstants>
  32. </PropertyGroup>
  33. <ItemGroup Condition="'$(TargetFramework)' == 'net462'">
  34. <Reference Include="PresentationFramework.Aero" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\FastReport.WPF\FastReport.WPF.csproj"/>
  38. <ProjectReference Include="..\FastReport.Forms.WPF\FastReport.Forms.WPF.csproj"/>
  39. </ItemGroup>
  40. </Project>