Skip to content
Snippets Groups Projects
Commit 42da9fd4 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix: Assembly name

parent 8537fb85
No related branches found
No related tags found
1 merge request!17BREAKING: Migrated the GraphDeployer to use the new API
using Coscine.ApiClient;
using Coscine.ApiClient.Core.Api;
using Coscine.ApiClient.Core.Model;
using GraphDeployer.Models.ConfigurationModels;
using Coscine.GraphDeployer.Models.ConfigurationModels;
using Coscine.GraphDeployer.Utils;
using LibGit2Sharp;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using VDS.RDF;
using static GraphDeployer.Utils.CommandLineOptions;
using static Coscine.GraphDeployer.Utils.CommandLineOptions;
using Configuration = Coscine.ApiClient.Core.Client.Configuration;
namespace GraphDeployer;
namespace Coscine.GraphDeployer;
public class Deployer(ILogger<Deployer> logger, IOptionsMonitor<GraphDeployerConfiguration> graphDeployerConfiguration)
{
......
......@@ -3,6 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Coscine.GraphDeployer</RootNamespace>
<AssemblyName>Coscine.GraphDeployer</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.2.9</Version>
......
using NLog;
using Coscine.GraphDeployer;
using NLog;
using NLog.LayoutRenderers;
using System.Text;
namespace GraphDeployer.Logging
namespace Coscine.GraphDeployer.Logging
{
[LayoutRenderer("assembly-name")]
public class AssemblyNameLayoutRenderer : LayoutRenderer
......
using NLog;
using Coscine.GraphDeployer;
using NLog;
using NLog.LayoutRenderers;
using System.Text;
namespace GraphDeployer.Logging
namespace Coscine.GraphDeployer.Logging
{
[LayoutRenderer("assembly-version")]
public class AssemblyVersionLayoutRenderer : LayoutRenderer
......
namespace GraphDeployer.Models.ConfigurationModels;
namespace Coscine.GraphDeployer.Models.ConfigurationModels;
public class GraphDeployerConfiguration
{
......
using CommandLine;
using GraphDeployer.Models.ConfigurationModels;
using Coscine.GraphDeployer.Models.ConfigurationModels;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog;
using NLog.Extensions.Logging;
using Winton.Extensions.Configuration.Consul;
using static GraphDeployer.Utils.CommandLineOptions;
using static Coscine.GraphDeployer.Utils.CommandLineOptions;
using LogLevel = Microsoft.Extensions.Logging.LogLevel;
namespace GraphDeployer;
namespace Coscine.GraphDeployer;
public class Program
{
......
using CommandLine;
namespace GraphDeployer.Utils;
namespace Coscine.GraphDeployer.Utils;
public static partial class CommandLineOptions
{
......
using System.Security.Cryptography;
namespace GraphDeployer;
namespace Coscine.GraphDeployer.Utils;
public static class HashUtil
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment