-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeoTiffTest.csproj
More file actions
42 lines (37 loc) · 1.85 KB
/
GeoTiffTest.csproj
File metadata and controls
42 lines (37 loc) · 1.85 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<!-- https://bertt.wordpress.com/category/uncategorized/ USING GDAL IN .NET CORE -->
<RestoreSources>
$(RestoreSources);https://api.nuget.org/v3/index.json;https://www.myget.org/F/gdalcore/api/v3/index.json
</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="sharpcompress" Version="0.28.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<!-- Lectura de ficheros de configuración
https://blog.hildenco.com/2020/05/configuration-in-net-core-console.html -->
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.12" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.12" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.12" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="3.1.12" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.12" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="4.7.5" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="MaxRev.Gdal.Core" Version="3.2.0.250" />
<PackageReference Include="MaxRev.Gdal.LinuxRuntime.Minimal" Version="3.2.0.250" />
<PackageReference Include="MaxRev.Gdal.WindowsRuntime.Minimal" Version="3.2.0.250" />
</ItemGroup>
<!-- Copy Settings -->
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="appsettings*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>