- Prioritätsbehandlung für document_path_dmz in EnvelopeService.LoadEnvelopes hinzugefügt. - CRUD-Operationen in EnvlopeDocument und ConfigurationFile Services/Repositories unter Verwendung von WebCoreModules implementiert. - Verschiedene Dateimethoden in [spezifischen Orten oder Klassen, falls zutreffend] auf async umgestellt.
78 lines
3.8 KiB
XML
78 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="13.0.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.15">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.15" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="NLog" Version="5.2.5" />
|
|
<PackageReference Include="Quartz" Version="3.8.0" />
|
|
<PackageReference Include="Quartz.AspNetCore" Version="3.8.0" />
|
|
<PackageReference Include="Quartz.Plugins" Version="3.8.0" />
|
|
<PackageReference Include="Quartz.Serialization.Json" Version="3.8.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
|
|
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\EnvelopeGenerator.Application\EnvelopeGenerator.Application.csproj" />
|
|
<ProjectReference Include="..\EnvelopeGenerator.Common\EnvelopeGenerator.Common.vbproj" />
|
|
<ProjectReference Include="..\EnvelopeGenerator.Infrastructure\EnvelopeGenerator.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="DevExpress.Data.v21.2">
|
|
<HintPath>D:\ProgramFiles\DevExpress 21.2\Components\Bin\Framework\DevExpress.Data.v21.2.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Core.API">
|
|
<HintPath>..\..\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Core.Application">
|
|
<HintPath>..\..\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Core.Contracts">
|
|
<HintPath>..\..\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Core.CultureServices">
|
|
<HintPath>..\..\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Core.Infrastructure">
|
|
<HintPath>..\..\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Infrastructure.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="DigitalData.Modules.Base">
|
|
<HintPath>..\..\DDModules\Base\bin\Debug\DigitalData.Modules.Base.dll</HintPath>
|
|
</Reference>
|
|
<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.Logging">
|
|
<HintPath>..\..\DDModules\Logging\bin\Debug\DigitalData.Modules.Logging.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="GdPicture.NET.14">
|
|
<HintPath>D:\ProgramFiles\GdPicture.NET 14\Redist\GdPicture.NET (.NET Framework 4.5)\GdPicture.NET.14.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="appsettings.json">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|