-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdf.Storage.csproj
75 lines (70 loc) · 3.91 KB
/
Pdf.Storage.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<AssemblyName>Pdf.Storage</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>Pdf.Storage</PackageId>
<GenerateProgramFile>false</GenerateProgramFile>
<UserSecretsId>29daae28-ca01-4571-a752-561bae77dd89</UserSecretsId>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="out\**" />
<Content Remove="out\**" />
<EmbeddedResource Remove="out\**" />
<None Remove="out\**" />
<None Include="ApiDescription.md" CopyToOutputDirectory="Always" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="Google.Cloud.Storage.V1" Version="4.10.0" />
<PackageReference Include="Hangfire" Version="1.8.14" />
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.1.1" />
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.9" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="Protacon.NetCore.WebApi.ApiKeyAuth" Version="3.0.0" />
<PackageReference Include="Protacon.NetCore.WebApi.TestUtil" Version="4.4.0" />
<PackageReference Include="Pinja.NetCore.WebApi.Util" Version="1.4.0" />
<PackageReference Include="RabbitMQ.Client" Version="6.8.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="System.IO.Abstractions" Version="21.0.29" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.0" />
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.301" />
<PackageReference Include="AWSSDK.S3" Version="3.7.403.4" />
<PackageReference Include="Stubble.Core" Version="1.10.8" />
<PackageReference Include="Stubble.Extensions.JsonNet" Version="1.2.3" />
<PackageReference Include="Microsoft.Azure.Storage.Blob" Version="11.2.3" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<!-- When you update PuppeteerSharp you must also find corresponding version
in alpine at Dockerfile. Alpine limits available chromium versions available so don't update
this without check them out. Chromium version must be about same as puppeteer expects -->
<PackageReference Include="PuppeteerSharp" Version="13.0.2" />
<!-- Remove this once testing library is updated -->
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.8" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Update="Pdf\CustomPages\*.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="PdfMerge\QPdfForWin\*" Condition=" '$(OS)' == 'Windows_NT' ">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>