Files

12 lines
336 B
C#
Raw Permalink Normal View History

2024-03-14 18:37:39 +00:00
using System.Linq;
using System.Reflection;
#nullable enable
2024-03-14 18:37:39 +00:00
internal static class SampleHelper
{
public static string? GetReleasesDir() => Assembly.GetEntryAssembly()?
2024-03-14 18:37:39 +00:00
.GetCustomAttributes<AssemblyMetadataAttribute>()
.Where(x => x.Key == "VelopackSampleReleaseDir")
.Single().Value;
}
#nullable restore