-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPdfAValidatorTest.csproj
More file actions
94 lines (86 loc) · 3.73 KB
/
PdfAValidatorTest.csproj
File metadata and controls
94 lines (86 loc) · 3.73 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\**" />
<EmbeddedResource Remove="Properties\**" />
<None Remove="Properties\**" />
</ItemGroup>
<ItemGroup>
<None Remove="TestExecutables\exitcode0.bat" />
<None Remove="TestExecutables\exitcode0.sh" />
<None Remove="TestExecutables\exitcode2.bat" />
<None Remove="TestExecutables\exitcode2.sh" />
<None Remove="TestPdfFiles\Encrypted.pdf" />
<None Remove="TestPdfFiles\FontsNotEmbedded.pdf" />
<None Remove="TestPdfFiles\FromLibreOffice.pdf" />
<None Remove="TestPdfFiles\FromLibreOfficeNonPdfA.pdf" />
<None Remove="TestPdfFiles\NoPdf.pdf" />
<None Remove="TestPdfFiles\NoPdfWithUnicodeChars-üåäö.pdf" />
<None Remove="TestPdfFiles\PdfNonCompliant.pdf" />
<None Remove="TestPdfFiles\PdfxConformancePdfxNone.pdf" />
</ItemGroup>
<ItemGroup>
<Content Include="TestExecutables\exitcode2.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestExecutables\exitcode0.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\FromLibreOffice.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\FromLibreOfficeNonPdfA.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\NoPdfWithUnicodeChars-üåäö.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\NoPdf.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\FontsNotEmbedded.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestExecutables\exitcode2.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestExecutables\exitcode0.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\PdfNonCompliant.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TestPdfFiles\PdfxConformancePdfxNone.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.32.0.97167">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PdfAValidator\PdfAValidator.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="TestPdfFiles\Encrypted.pdf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>