deployment/deploy-test/Program.cs

17 lines
300 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Net;
using Deployment;
namespace deploy_test;
class Program
{
static void Main(string[] args)
{
var c = ConfigurationBootstrapper.Load<Config>();
Console.WriteLine(c.imavalue);
}
}