blob: 941286b943367e95952152d908b73da36450329a (
plain)
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
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>0eff397c-f98e-4c3a-95ec-9d900f1b938c</UserSecretsId>
<NeutralLanguage>es</NeutralLanguage>
<Deterministic>true</Deterministic>
<PathMap>$(MSBuildProjectDirectory)=.</PathMap>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costasdev.VigoTransitApi" />
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="ProjNet" />
<PackageReference Include="NetTopologySuite" />
<PackageReference Include="NetTopologySuite.IO.GeoJSON" />
<PackageReference Include="NetTopologySuite.IO.VectorTiles.Mapbox" />
<PackageReference Include="CsvHelper" />
<PackageReference Include="FuzzySharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Enmarcha.Sources.OpenTripPlannerGql\Enmarcha.Sources.OpenTripPlannerGql.csproj" />
<ProjectReference Include="..\Enmarcha.Sources.TranviasCoruna\Enmarcha.Sources.TranviasCoruna.csproj" />
<ProjectReference Include="..\Enmarcha.Sources.Tussa\Enmarcha.Sources.Tussa.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Data\xunta_fares.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
|