forked from FarmMaps/FarmMapsApiClient
Added project FarmmapsBulkSatDownload
This commit is contained in:
21
FarmmapsBulkSatDownload/Program.cs
Normal file
21
FarmmapsBulkSatDownload/Program.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Threading.Tasks;
|
||||
using FarmmapsApi;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace FarmmapsBulkSatDownload
|
||||
{
|
||||
class Program : FarmmapsProgram<BulkSatDownloadApplication>
|
||||
{
|
||||
private static async Task Main(string[] args)
|
||||
{
|
||||
await new Program().Start(args);
|
||||
}
|
||||
|
||||
protected override void Configure(IServiceCollection serviceCollection)
|
||||
{
|
||||
serviceCollection.AddLogging()
|
||||
.AddTransient<BulkSatDownloadService>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user