35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Company>Digital Data</Company>
|
|
<Product>Report Viewer</Product>
|
|
<StartupObject>ReportViewer.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DevExpress.Win.Design" Version="22.1.4" />
|
|
<PackageReference Include="NLog" Version="5.1.2" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="DigitalData.Modules.Config">
|
|
<HintPath>..\..\DDModules\Config\bin\Debug\DigitalData.Modules.Config.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Database">
|
|
<HintPath>..\..\DDModules\Database\bin\Debug\DigitalData.Modules.Database.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Language">
|
|
<HintPath>..\..\DDModules\Interfaces\bin\Debug\DigitalData.Modules.Language.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Logging">
|
|
<HintPath>..\..\DDModules\Logging\bin\Debug\DigitalData.Modules.Logging.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project> |