-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWayfarer.csproj
More file actions
106 lines (88 loc) · 4.98 KB
/
Copy pathWayfarer.csproj
File metadata and controls
106 lines (88 loc) · 4.98 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
95
96
97
98
99
100
101
102
103
104
105
106
<Project Sdk="Microsoft.NET.Sdk.Web">
<Import Project="Version.props" />
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-Wayfarer-61e4bfbb-7b73-4610-9e19-3a5a901d3bdd</UserSecretsId>
<!-- Generated frontend bundles are served from wwwroot by UseStaticFiles so their
compressed variants cannot drift from static-web-asset endpoint metadata. -->
<StaticWebAssetEndpointExclusionPattern>$(StaticWebAssetEndpointExclusionPattern);dist/**;vite/trip-editor/**;wwwroot/dist/**;wwwroot/vite/trip-editor/**</StaticWebAssetEndpointExclusionPattern>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Wayfarer.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="GeoTimeZone" Version="6.0.0" />
<PackageReference Include="HtmlSanitizer" Version="9.0.892" />
<!-- EF Core packages for .NET 10 -->
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MvcFrontendKit" Version="1.0.0" />
<PackageReference Include="NetTopologySuite" Version="2.6.0" />
<PackageReference Include="NetTopologySuite.Features" Version="2.2.0" />
<PackageReference Include="NetTopologySuite.IO.GeoJSON" Version="4.0.0" />
<PackageReference Include="NodaTime" Version="3.2.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="10.0.0" />
<PackageReference Include="Microsoft.Playwright" Version="1.48.0" />
<PackageReference Include="Quartz" Version="3.14.0" />
<PackageReference Include="Quartz.Extensions.DependencyInjection" Version="3.14.0" />
<PackageReference Include="Quartz.Serialization.Json" Version="3.14.0" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Serilog.Sinks.PostgreSQL" Version="2.3.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<!-- Swashbuckle locked at 9.0.1 -->
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
<PackageReference Include="TimeZoneConverter" Version="7.0.0" />
<PackageReference Include="Unidecode.NET" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
<Compile Remove="tools\**" />
<Content Remove="tests\**" />
<Content Remove="tools\**" />
<None Remove="tests\**" />
<None Remove="tools\**" />
</ItemGroup>
<ItemGroup>
<Folder Include="Exports\" />
<Folder Include="Scripts\" />
<Folder Include="Uploads\Temp\" />
<Folder Include="wwwroot\icons\" />
<Folder Include="wwwroot\lib\sortablejs\" />
</ItemGroup>
<!-- Include docs folder for local serving at /docs/ -->
<ItemGroup>
<Content Include="docs\**\*.*" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<!-- Include frontend config so it's available in production (MvcFrontendKit reads it at runtime) -->
<ItemGroup>
<Content Include="frontend.config.yaml" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Content Update="Areas\Manager\Views\Users\Create.cshtml">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="Scripts\tables_postgres.sql" />
<EmbeddedResource Include="Scripts\tables_postgres.sql" />
</ItemGroup>
</Project>