-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPdfHandler.Infrastructure.csproj
More file actions
42 lines (32 loc) · 1.41 KB
/
PdfHandler.Infrastructure.csproj
File metadata and controls
42 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SupportedOSPlatformVersion>6.1</SupportedOSPlatformVersion>
<NoWarn>$(NoWarn);CA1416</NoWarn>
<Version>1.1.3</Version>
<FileVersion>1.1.3.0</FileVersion>
<AssemblyVersion>1.1.3.0</AssemblyVersion>
<Company>Goplan</Company>
<Product>PDFハンドラ</Product>
<Copyright>Copyright © 2024-2025 Goplan</Copyright>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PdfHandler.Core\PdfHandler.Core.csproj" />
</ItemGroup>
<ItemGroup>
<!-- ❌ iText7を削除(AGPL v3.0ライセンス) -->
<!-- <PackageReference Include="itext7" Version="7.2.5" /> -->
<!-- ✅ PdfSharp 6.x に更新(MIT License - 完全無償・商用利用可能) -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="PdfSharp" Version="6.1.1" />
<!-- 既存のパッケージ(保持) -->
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
<PackageReference Include="Docnet.Core" Version="2.6.0" />
<!-- Supabase統合 -->
<PackageReference Include="Supabase" Version="1.0.0" />
<!-- Stripe統合 -->
<PackageReference Include="Stripe.net" Version="47.0.0" />
</ItemGroup>
</Project>