Demos.props 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Project>
  2. <PropertyGroup>
  3. <TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
  4. <UseWpf>true</UseWpf>
  5. <LangVersion>latest</LangVersion>
  6. <OutputType>WinExe</OutputType>
  7. <Configurations>Debug;Release;Demo;ReleaseInstalls;DemoInstalls</Configurations>
  8. <ApplicationManifest>app.manifest</ApplicationManifest>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)' != 'Debug'">
  11. <DebugSymbols>false</DebugSymbols>
  12. <DebugType>none</DebugType>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)' == 'Demo'">
  21. <DefineConstants>$(DefineConstants);Demo</DefineConstants>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)' == 'DemoInstalls'">
  24. <DefineConstants>$(DefineConstants);Demo</DefineConstants>
  25. </PropertyGroup>
  26. <Import Project="..\..\UsedPackages.version" />
  27. <PropertyGroup>
  28. <FastReportWPFProj>..\..\..\FastReport.WPF\FastReport.WPF.csproj</FastReportWPFProj>
  29. <FastReportWPFPackage>FastReport.WPF.Demo</FastReportWPFPackage>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="$(FastReportWPFProj)" Condition="Exists('$(FastReportWPFProj)')" />
  33. <PackageReference Include="$(FastReportWPFPackage)" Version="$(FRWPFVersion)" Condition="!Exists('$(FastReportWPFProj)')" />
  34. </ItemGroup>
  35. </Project>