Answers for "c# determine configration at runtime"

C#
1

c# determine configration at runtime

var assemblyConfigurationAttribute = typeof(CLASS_NAME).Assembly.GetCustomAttribute<AssemblyConfigurationAttribute>();
var buildConfigurationName = assemblyConfigurationAttribute?.Configuration;
Posted by: Guest on February-02-2021

Code answers related to "c# determine configration at runtime"

C# Answers by Framework

Browse Popular Code Answers by Language