1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <Project>
- <PropertyGroup>
- <TargetFrameworks>net462;net6.0-windows</TargetFrameworks>
- <UseWpf>true</UseWpf>
- <LangVersion>latest</LangVersion>
- <OutputType>WinExe</OutputType>
- <Configurations>Debug;Release;Demo;ReleaseInstalls;DemoInstalls</Configurations>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)' != 'Debug'">
- <DebugSymbols>false</DebugSymbols>
- <DebugType>none</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)' == 'Demo'">
- <DefineConstants>$(DefineConstants);Demo</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)' == 'DemoInstalls'">
- <DefineConstants>$(DefineConstants);Demo</DefineConstants>
- </PropertyGroup>
- <Import Project="..\..\UsedPackages.version" />
- <PropertyGroup>
- <FastReportWPFProj>..\..\..\FastReport.WPF\FastReport.WPF.csproj</FastReportWPFProj>
- <FastReportWPFPackage>FastReport.WPF.Demo</FastReportWPFPackage>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="$(FastReportWPFProj)" Condition="Exists('$(FastReportWPFProj)')" />
- <PackageReference Include="$(FastReportWPFPackage)" Version="$(FRWPFVersion)" Condition="!Exists('$(FastReportWPFProj)')" />
- </ItemGroup>
- </Project>
|