Files
velopack/samples/SampleHelper.cs
T

10 lines
299 B
C#
Raw Normal View History

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