forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResourceAssemblyInfo.cs
30 lines (24 loc) · 1.05 KB
/
ResourceAssemblyInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.IO;
using Microsoft.Build.Framework;
namespace Microsoft.NET.Build.Tasks
{
internal class ResourceAssemblyInfo
{
public string Culture { get; }
public string RelativePath { get; }
public ResourceAssemblyInfo(string culture, string relativePath)
{
Culture = culture;
RelativePath = relativePath;
}
public static ResourceAssemblyInfo CreateFromReferenceSatellitePath(ITaskItem referenceSatellitePath)
{
string destinationSubDirectory = referenceSatellitePath.GetMetadata("DestinationSubDirectory");
string culture = destinationSubDirectory.Trim('\\', '/');
string relativePath = Path.Combine(destinationSubDirectory, Path.GetFileName(referenceSatellitePath.ItemSpec));
return new ResourceAssemblyInfo(culture, relativePath);
}
}
}