Use Artifacts
This commit is contained in:
parent
d18023d4b8
commit
dd914cc0c7
2 changed files with 9 additions and 2 deletions
7
Directory.Build.props
Normal file
7
Directory.Build.props
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
|
||||
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
|
||||
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -27,8 +27,8 @@ public class PowerDnsHandler : ConnectionHandler
|
|||
{
|
||||
Dictionary<string, HandlerConverter> converters = new(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
["initialize"] = ToInitialize,
|
||||
["lookup"] = ToLookup
|
||||
["initialize"] = new(ToInitialize),
|
||||
["lookup"] = new(ToLookup)
|
||||
};
|
||||
|
||||
Converters = converters.AsReadOnly();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue