12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <UseWpf>true</UseWpf>
- <LangVersion>latest</LangVersion>
- <OutputType>WinExe</OutputType>
- <Configurations>Debug;Release;Demo</Configurations>
- <TargetFramework>net6.0-windows</TargetFramework>
- </PropertyGroup>
- <PropertyGroup>
- <Title>FastReport.WPF Viewer</Title>
- <Description>Report generator</Description>
- <Company>Fast Reports Inc.</Company>
- <Authors>Fast Reports Inc.</Authors>
- <Product>FastReport.WPF Viewer</Product>
- <Copyright>Copyright © Fast Reports Inc. 2007-2024</Copyright>
- <RootNamespace>Viewer</RootNamespace>
- <AssemblyName>Viewer</AssemblyName>
- <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>
- <ItemGroup Condition="'$(TargetFramework)' == 'net462'">
- <Reference Include="PresentationFramework.Aero" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\FastReport.WPF\FastReport.WPF.csproj"/>
- <ProjectReference Include="..\FastReport.Forms.WPF\FastReport.Forms.WPF.csproj"/>
- </ItemGroup>
- </Project>
|