mirror of
https://github.com/logos-co/velopack.git
synced 2026-08-31 21:51:09 +00:00
10 lines
299 B
C#
10 lines
299 B
C#
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;
|
|
} |