mirror of
https://github.com/eliasstepanik/IonosDDNSUpdater.git
synced 2026-01-10 11:08:27 +00:00
Fixed Project
This commit is contained in:
parent
c3b175f686
commit
e6b175a18c
@ -8,12 +8,6 @@
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="..\.dockerignore">
|
||||
<Link>.dockerignore</Link>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using DDNSUpdater.Interfaces;
|
||||
using System;
|
||||
using DDNSUpdater.Interfaces;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Spectre.Console;
|
||||
using Console = Spectre.Console.AnsiConsole;
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace DDNSUpdater.Logging;
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using System;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Logging.Configuration;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using System.Collections.Concurrent;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Runtime.Versioning;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Logging.Console;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace DDNSUpdater.Models.Requests;
|
||||
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
namespace DDNSUpdater.Models.Requests;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DDNSUpdater.Models.Requests;
|
||||
|
||||
public class DynamicDnsResponse
|
||||
{
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
using DDNSUpdater.Interfaces;
|
||||
using System;
|
||||
using DDNSUpdater.Interfaces;
|
||||
using DDNSUpdater.Logging;
|
||||
using DDNSUpdater.Services;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
|
||||
@ -1,5 +1,9 @@
|
||||
using System.Collections;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Threading.Tasks;
|
||||
using DDNSUpdater.Interfaces;
|
||||
using DDNSUpdater.Logging;
|
||||
using DDNSUpdater.Models;
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
using DDNSUpdater.Interfaces;
|
||||
using System;
|
||||
using System.Threading;
|
||||
using DDNSUpdater.Interfaces;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user